Heim > Backend-Entwicklung > PHP-Tutorial > PHP函数级分层性能分析工具xhprof的安装和使用方法

PHP函数级分层性能分析工具xhprof的安装和使用方法

WBOY
Freigeben: 2016-06-23 13:02:46
Original
958 Leute haben es durchsucht

1. 下载安装xhprof

$ wget http://pecl.php.net/get/xhprof-0.9.4.tgz$  tar zxvf xhprof-0.9.4.tgz$  cd xhprof-0.9.4/extension/$  phpize$  ./configure $  make$  sudo make install
Nach dem Login kopieren

2. 配置 php.ini

[xhprof]extension=xhprof.so;xhprof.output_dir=/tmp/xhprof
Nach dem Login kopieren

重启php-fpm

$ service php-fpm restart
Nach dem Login kopieren

3. 使用方法

<?php// cpu:XHPROF_FLAGS_CPU 内存:XHPROF_FLAGS_MEMORY// 如果两个一起:XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);//要测试的php代码$data = xhprof_disable();   //返回运行数据 // xhprof_lib在下载的包里存在这个目录,记得将目录包含到运行的php代码中include_once "xhprof_lib/utils/xhprof_lib.php";  include_once "xhprof_lib/utils/xhprof_runs.php";   $objXhprofRun = new XHProfRuns_Default(); // 第一个参数j是xhprof_disable()函数返回的运行信息// 第二个参数是自定义的命名空间字符串(任意字符串),// 返回运行ID,用这个ID查看相关的运行结果$run_id = $objXhprofRun->save_run($data, "xhprof");var_dump($run_id);
Nach dem Login kopieren

4. 页面展示说明

将xhprof_lib&&xhprof_html相关目录copy到可以访问到的地址访问 xxx/xhprof_html/index.php?run=$run_id&source=xhprof 就可经看到你的php代码运行的相关情况下面是一些参数说明Inclusive Time                 包括子函数所有执行时间。Exclusive Time/Self Time       函数执行本身花费的时间,不包括子树执行时间。Wall Time                      花去了的时间或挂钟时间。CPU Time                       用户耗的时间+内核耗的时间Inclusive CPU                  包括子函数一起所占用的CPUExclusive CPU                  函数自身所占用的CPU
Nach dem Login kopieren
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage