Typecho 页面加载耗时代码

时间:2020-08-01   阅读:330

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[0];
  $timetotal = $timeend - $timestart;
  $r = number_format( $timetotal, $precision );
  if ( $display )
    echo $r;
  return $r;
}


然后,模板部分加入:

<?php timer_stop() ?>



上一篇:Typecho 24小时发布文章数量

下一篇:Typecho 随机显示一篇文章代码

网友评论