chrisdowson/xhprof

XHProf:PHP的分层分析器

v1.0.0 2023-08-16 06:52 UTC

This package is auto-updated.

Last update: 2024-09-16 09:57:16 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以查看配置文件列表。