网站地图    收藏   

主页 > 入门引导 > php环境安装 >

windows wamp中配置安装xhprof步骤 - php环境安装

来源:自学PHP网    时间:2014-12-17 09:42 作者: 阅读:

[导读] 1.下载在这里 http://dev.freshsite.pl/php-extensions/xhprof.html.我使用的是wamp 2.2d 32位的,这里罗嗦一句,既然用windows的wamp了,就不要装64位了,毕竟都是开发环境,正式环境肯定是32位的,......

windows wamp中配置安装xhprof步骤

1.下载在这里 http://dev.freshsite.pl/php-extensions/xhprof.html.

我使用的是wamp 2.2d 32位的,这里罗嗦一句,既然用windows的wamp了,就不要装64位了,毕竟都是开发环境,正式环境肯定是32位的,这里下载两个文件 XHProf 0.10.3 for PHP 5.3 vc9.zip xhprof_html.zip

2.安装,这步骤很简单,把XHProf 0.10.3 for PHP 5.3 vc9.zip里面的dll文件重命名为 php_xhprof.dll 放在php的ext目录下,然后在php.ini配置里面加入配置,不要忘记创建对应的文件夹,代码如下:

  1. [xhprof] 
  2. extension=php_xhprof.dll 
  3. ; directory used by default implementation of the iXHProfRuns 
  4. ; interface (namely, the XHProfRuns_Default class) for storing 
  5. ; XHProf runs. 
  6. xhprof.output_dir=”d:/wamp/logs/xhprof_log” 

重启你的wamp即可,看看phpinfo()里面有没有对应的文件.

3.使用:xhprof_html.zip 这个文件解压到你想测试的网站根目录就好了,现在网站一般使用的是框架,唯一入口这点最好了,直接在index.php里面写就好了,我用的是yaf框架,代码如下:

  1. xhprof_enable();//开始 
  2. require 'init.php'
  3. require 'conf/db.inc.php'
  4. $app = new Yaf_Application(BASE_PATH . "/conf/itxiangqin.ini"); 
  5. Yaf_Registry::set('config', Yaf_Application::app()->getConfig()); 
  6. $app->bootstrap()->run(); 
  7. $xhprof_data = xhprof_disable();//结束,然后写入文件,注意目录 
  8. $XHPROF_ROOT = realpath(dirname(__FILE__).'/xhprof'); 
  9. include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php"
  10. include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php"
  11. //开源代码phpfensi.com 
  12. // save raw data for this profiler run using default 
  13. // implementation of iXHProfRuns. 
  14. $xhprof_runs = new XHProfRuns_Default(); 
  15.  
  16. // save the run under a namespace "xhprof_foo" 
  17. $run_id = $xhprof_runs->save_run($xhprof_data"xhprof_foo"); 
  18. echo "<a href='http://www.pztai.com/xhprof/xhprof_html/?run=$run_id&source=xhprof_foo'>分析</a>";// 

这里的pztai换成你自己的域名就好了,本地就localhost分析</a>";//这里的pztai换成你自己的域名就好了,本地就localhost.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论