Typecho在页面输出加载时间
资料来源:Typecho.dev - Typecho教程:在页面输出加载时间在主题 functions.php 文件里放入下面代码/** * 加载时间 * @return bool */ function timer_start() { global $timestart; $mtime = explode( ' ', microtime() ); $timestart = $mtime[1] + $mtime[0]; return true; } timer_start(); function timer_stop( $display = ...