用xdebug对php进行性能分析

1. 下载PHP的XDebug扩展,网址:http://xdebug.org/


2. 将下载的模块(php_xdebug-2.0.5-5.2.dll)放到PHP的安装的 ext 目录下;


3. 配置php.ini文件,将以下几行添加

extension=php_xdebug-2.0.5-5.2.dll
[Xdebug]

xdebug.auto_trace = 1

xdebug.collect_params = 1

xdebug.collect_return = 1


xdebug.profiler_append = 0xdebug.profiler_enable=1

xdebug.profiler_enable_trigger = 1#需要分析的时候,加XDEBUG_PROFILE参数

xdebug.profiler_output_name = "cachegrind.out.%p"#格式一定要对

 

xdebug.profiler_output_dir = "E:/Projects/xdebug"


4. 重启Apache服务器。

5. <?php echo phpinfo();?>如果输出的内容中有看到xdebug,说明安装配置成功。

6. 在Windows平台下,可以用客户端(Windows):WinCacheGrind WinCacheGrind 这个软件来打开这些文件。可以更直观地显示其中内容:
下载地址:http://sourceforge.net/projects/wincachegrind/

你可能感兴趣的:(xdebug)