chrisdowson / xhprof
XHProf:PHP的分层分析器
v1.0.0
2023-08-16 06:52 UTC
README
安装
在Linux中编译
$ cd extension/
$ phpize
$ ./configure [--with-php-config=/path/to/php-config]
$ make && make install
编辑php.ini,添加新行
extension=xhprof.so
确保它工作正常
php -m |grep xhprof
分析您的页面
尽早将以下内容添加到您的初始PHP脚本中
xhprof_enable(); register_shutdown_function( function () { file_put_contents("/tmp/" . uniqid() . ".ApplicationName.xhprof", serialize(xhprof_disable())); } );
查看结果
确保xhprof_html
目录可以从您的Web应用程序访问,并访问页面xhprof_html/index.php
以查看配置文件列表。