记录程序运行细节
记录程序运行时间
<?php
$start = microtime(true); //index.php $end = microtime(true);
$time = number_format(($end - $start), 2); echo 'This page loaded in ', $time, ' seconds';
?>
跟踪php的系统调用
strace -o /tmp/output.txt -T -tt -F -e trace=all -p
V. 结论
- 某些数据的展示与否最好把性能也考虑上
- 正则的效率不高,能不用尽量不用
- 主题中如果同一个变量要使用多次,请将其先保存至一个临时变量
- 缓存很重要
- strace是个好工具