如何跟踪PHP中的代码执行?
我希望看到PHP脚本的整个代码执行的日志。像这样的东西:http://en.wikibooks.org/wiki/Ruby_Programming/Standard_Library/Tracer(因为缺乏更好的例子;请不要燃烧)。
有没有办法在PHP中获取日志?
注意:我知道我可以使用调试器,但这并不相同。
我希望看到PHP脚本的整个代码执行的日志。像这样的东西:http://en.wikibooks.org/wiki/Ruby_Programming/Standard_Library/Tracer(因为缺乏更好的例子;请不要燃烧)。
有没有办法在PHP中获取日志?
注意:我知道我可以使用调试器,但这并不相同。
Xdebug绝对是你想要的,但也有像valgrind套件中的callgrind这样的东西。
Zend博客文章在这里应该给你一些指导:http://devzone.zend.com/1139/profiling-php-applications-with-xdebug/