本文整理汇总了PHP中zotop::mark方法的典型用法代码示例。如果您正苦于以下问题:PHP zotop::mark方法的具体用法?PHP zotop::mark怎么用?PHP zotop::mark使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类zotop
的用法示例。
在下文中一共展示了zotop::mark方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: shutdown
/**
* 系统关闭,并输出渲染内容
*
* @return string
*/
public static function shutdown()
{
zotop::mark('zotop.shutdown');
//获取页面内容
$contents = ob_get_contents();
//清理输出数据
ob_end_clean();
//渲染页面内容
$contents = zotop::filter('system.render', $contents);
//输入页面内容
echo $contents;
}
示例2: render
/**
* 渲染输出内容
*
* @param string $output 待渲染输出的内容
* @return string
*/
public static function render($output)
{
$mark = zotop::mark('system.begin', 'system.end');
$output = str_replace(array('{$runtime}', '{$memory}', '{$include}'), array($mark['time'] . ' S', $mark['memory'] . ' MB', count(get_included_files())), $output);
return $output;
}