本文整理匯總了PHP中sys::time_end方法的典型用法代碼示例。如果您正苦於以下問題:PHP sys::time_end方法的具體用法?PHP sys::time_end怎麽用?PHP sys::time_end使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sys
的用法示例。
在下文中一共展示了sys::time_end方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: shutdown
static function shutdown()
{
// check execution time
self::$time_end = number_format(sys_get_microtime() - self::$time_start, 2);
if (self::$time_end > SYSTEM_SLOW) {
sys_log_message_log("system-slow", sprintf("{t}%s secs{/t}", self::$time_end) . " " . basename(_sys_request_uri()), _sys_request_uri());
}
// process error.txt
$size = @filesize(SIMPLE_CACHE . "/debug/error.txt");
if ($size > 0 and $size <= 2097152 and $msgs = @file_get_contents(SIMPLE_CACHE . "/debug/error.txt")) {
// 2M
@unlink(SIMPLE_CACHE . "/debug/error.txt");
$msgs = array_reverse(explode("\n", $msgs));
foreach ($msgs as $msg) {
if ($msg == "") {
continue;
}
$vars = unserialize($msg);
sys_log_message($vars[0], $vars[1], $vars[2], $vars[3], true, $vars[4]);
}
} else {
if ($size > 0) {
sys_die("{t}The error logfile cannot be processed, too large:{/t} " . SIMPLE_CACHE . "/debug/error.txt");
}
}
// logging
sys_log_stat("pages", 1);
}