Typecho 实现显示页面加载时间

function timer_start() {
global $timestart;
$mtime = explode( ' ', microtime() );
$timestart = $mtime[1] + $mtime[0];
return true;
}
timer_start();
function timer_stop( $display = 0, $precision = 3 ) {

global $timestart, $timeend;

$mtime = explode( ' ', microtime() );

$timeend = $mtime[1] + $mtime[

在需要的地方直接调用一下代码

<?php echo timer_stop(); ?>

广告栏+++++++蜜糖商店|大哥云| 搬瓦工JMS|红莓网络| Mielink|萌喵加速| 飞鸟云

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注