一个优秀网站速度一定是非常快的,所以我们建设的网站一定要保证速度,静态文件方面我们可以启用 cdn 来加速,动态脚本的优化我们只能尽量的减少查询次数以及提高服务器的配置。下面上一个输出 WordPress 执行效率的代码。
<?php class runtime { var $StartTime = 0; var $StopTime = 0; function get_microtime() { list($usec, $sec) = explode(' ', microtime()); return ((float)$usec + (float)$sec); } function start() { $this->StartTime = $this->get_microtime(); } function stop() { $this->StopTime = $this->get_microtime(); } function spent() { return round(($this->StopTime - $this->StartTime) * 1000, 1); } } $runtime= new runtime; $runtime->start(); $a = 0; for($i=0; $i<1000000; $i++) { $a += $i; } $runtime->stop(); echo "页面执行时间: ".$runtime->spent()." 毫秒"; ?>
将以上代码放到 footer.php 适当的位置,就可以了看到 WordPress 当前页面的执行效率了。