php 执行程序分析

时间:2022-04-13 12:50:21

记录程序运行细节

记录程序运行时间

<?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. 结论

  1. 某些数据的展示与否最好把性能也考虑上
  2. 正则的效率不高,能不用尽量不用
  3. 主题中如果同一个变量要使用多次,请将其先保存至一个临时变量
  4. 缓存很重要
  5. strace是个好工具