用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/
相关推荐
chenhaimeimeng 2020-09-15
icysonyk 2020-09-15
codeDig 2020-09-15
lemonzhangyan 2020-09-17
RemixGdc 2020-08-15
nicelife 2020-06-27
zhaowj00 2020-06-06
缘起宇轩阁 2020-04-22
xiaocainiao0 2020-04-22
nicelife 2020-03-26
poplpsure 2020-02-10
nicelife 2019-12-25
amberom 2019-12-05
ipromiser 2019-11-19
MXstudying 2019-11-17
spinachcqb 2019-11-04
ROES 2011-05-05
很青的青蛙 2010-10-07
lff 2008-11-05