Exemplo n.º 1
0
<?php

// begin header
if (!($bootstrap = getenv('COBRA_BOOTSTRAP'))) {
    die('COBRA_BOOTSTRAP');
}
require_once $bootstrap;
// end header
$cosys = __k_cache_fetch();
$codb = new coDB($cosys['sys.config']);
__k_print('PHP Time');
__k_print('time: ' . $codb->time());
__k_print('microtime: ' . $codb->microtime());
__k_print('timestamp: ' . $codb->timestamp());
__k_print('DB Time');
$codb->Connect();
__k_print('time: ' . $codb->time());
__k_print('microtime: ' . $codb->microtime());
__k_print('timestamp: ' . $codb->timestamp());
$codb->Disconnect();
Exemplo n.º 2
0
Arquivo: k.php Projeto: hornos/cobra
function __k_die($str = '', $exit = 1, $obclean = true)
{
    if (COBRA_CLI) {
        __k_print($str, $obclean);
    } else {
        $cobra = __k_cache_fetch();
        $error_html = $cobra['path.error'] . '/' . __k_safe_str($str) . COBRA_ERROR_EXTENSION;
        if (is_readable($error_html)) {
            readfile($error_html);
        } else {
            __k_json($str, $obclean);
        }
    }
    exit($exit);
}