xhprof怎么在php中使用?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
1、执行速度快。2、具有很好的开放性和可扩展性。3、PHP支持多种主流与非主流的数据库。4、面向对象编程:PHP提供了类和对象。5、版本更新速度快。6、具有丰富的功能。7、可伸缩性。8、功能全面,包括图形处理、编码与解码、压缩文件处理、xml解析等。
xhprof php性能分析
1.clone xhprof 此版本为github第三方扩展 (php官房不支持 php 7)
https://github.com/longxinH/xhprof
2.extension 目录为扩展源码安状扩展即可
phpize && ./configure && make && make install
3.编辑php.ini 启用xhprof扩展
[xhprof] extension = xhprof.so xhprof.output_dir = /tmp/xhprof ;性能分析数据文件存放位置 需要php用户有可写可读权限
4.对项目入口文件添加代码
xhprof_enable(XHPROF_FLAGS_NO_BUILTINS + XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY); register_shutdown_function(function (){ $data = xhprof_disable(); //xhprof_lib 在第一步git clone 后的文件夹里面 include '/mnt/d/www/xhprof/xhprof_lib/utils/xhprof_lib.php'; include '/mnt/d/www/xhprof/xhprof_lib/utils/xhprof_runs.php'; $objXhprofRun = new XHProfRuns_Default(); $objXhprofRun->save_run($data, "table"); //生成数据文件后缀 });
5.nginx 或者 apache 创建 网占目录(apache为例)
<VirtualHost *:80> ServerName xhprof.com ## xhprof/xhprof_html 在第一步git clone 后的文件夹里面 DocumentRoot "/mnt/d/www/xhprof/xhprof_html" DirectoryIndex index.html index.php index.html <Directory "/mnt/d/www/xhprof/xhprof_html"> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> </VirtualHost>
6.访问 http://xhprof.com/ (上面虚拟主机配置的 本地域名需要host )显示每次程序运行生成的性能分析数据文件 点击可以打 开
7.如果想要查看性能图点击 view full callgraph (服务器需要安装 graphviz 库)
ubuntu 安装方法 (pro apt-get install graphviz
)
8.显示效果图
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。