多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
一. 下载xdebug扩展        http://xdebug.org/download.php 二. php.ini配置        ;基本调试配置 xdebug.auto\_trace = on xdebug.collect\_params = on xdebug.collect\_return = on xdebug.profiler\_enable = on xdebug.profiler\_output\_dir="D:\\phpStudy\\tmp\\xdebug"         xdebug.trace\_output\_dir="D:\\phpStudy\\tmp\\xdebug" ;远程调试设置          xdebug.remote\_enable = on          xdebug.remote\_host = localhost          xdebug.remote\_port = 9000          xdebug.remote\_autostart = on          xdebug.default\_enable=on  xdebug.remote\_autostart = on        xdebug.remote\_connect\_back = On           //如果开启此,将忽略下面的 xdebug.remote\_host 的参数。           xdebug.remote\_host = 192.168.59.104    //注意这里是,客户端的ip           xdebug.remote\_port = 9900                       //      注意这里是,客户端的端口         配置说明如下: ;显示默认的错误信息 xdebug.auto\_trace=on ;自动打开“监测函数调用过程”的功模。该功能可以在你指定的目录中将函数调用的监测信息以文件的形式输出。此配置             项的默认值为off。 xdebug.collect\_params=on ;打开收集“函数参数”的功能。将函数调用的参数值列入函数过程调用的监测信息中。此配置项的默认值为off。 xdebug.collect\_return=on ;打开收集“函数返回值”的功能。将函数的返回值列入函数过程调用的监测信息中。此配置项的默认值为off。 xdebug.max\_nesting\_level=100 xdebug.profiler\_enable=on ;打开效能监测器。 xdebug.remote\_enable=on ;是否调试 xdebug.remote\_host=localhost xdebug.remote\_port=9000 ;调试端口 xdebug.remote\_handler=dbgp ;选择协议 xdebug.trace\_output\_dir="d:\\Temp" ;设定函数调用监测信息的输出文件的路径。 xdebug.profiler\_output\_dir="d:\\Temp" ;设定效能监测信息输出文件的路径。        xdebug.auto\_trace = 1   ;是否允许Xdebug跟踪函数调用,跟踪信息以文件形式存储,默认值为0        collect\_params = 1   ;是否允许Xdebug跟踪函数参数,默认值为0   xdebug.collect\_return = 1   ;是否允许Xdebug跟踪函数返回值,默认值为0   xdebug.profiler\_enable = 1   ;打开xdebug的性能分析器,以文件形式存储,这项配置是不能以ini\_set()函数配置的,默认值为0   xdebug.profiler\_output\_dir        ;性能分析文件的存放位置,默认值为/tmp        xdebug.profiler\_output\_name        ;性能分析文件的命名规则,默认值为cachegrind.out.%p        xdebug.trace\_output\_dir        ;函数调用跟踪信息输出文件目录,默认值为/tmp        xdebug.trace\_output\_name        ;函数调用跟踪信息输出文件命名规则,默认为trace.%c 三. phpstorm配置 1\. 配置php执行php.exe      ![](https://www.freesion.com/images/90/79ed5edd027dedb7dfa1420269335d72.png) 2.  9000端口与php.ini中xdebug.remote\_port=9000一致 ![](https://www.freesion.com/images/496/9aba82f7ee17a5b7d671b4d93e4e0948.png) 3.  ![](https://www.freesion.com/images/617/ca919fc3752fd4fdbd04b1e6907ea5d9.png) ![](https://www.freesion.com/images/647/2f20ef940cd2cdf9c8a19f36bf448257.png) ![](https://www.freesion.com/images/112/f847d2608ece7e24cd2a48d870009d80.png) ![](https://www.freesion.com/images/994/bd59c9c0bf907db764b6595707677f32.png) ![](https://www.freesion.com/images/131/baa018aea08d0bc28623669065be716b.png) ![](https://www.freesion.com/images/33/068dd0943d2ef2da0b087bbed336abe1.png) 四.xdebug调试 五. 性能分析   1. 脚本执行时间           php自带:microtime  ~~~php <?php/*** Simple function to replicate PHP 5 behaviour*/function microtime_float(){ list($usec, $sec) = explode(" ", microtime());return ((float)$usec + (float)$sec);}$time_start = microtime_float();// Sleep for a whileusleep(100);$time_end = microtime_float();$time = $time_end - $time_start;echo "Did nothing in $time seconds\n"; ~~~          xdebug: xdebug\_time\_index()   2. 脚本运行占用内存           php自带:memory\_get\_usage(), PHP编译时使用了\-enable-memory-limit参数时才有效 xdebug: xdebug\_memory\_usage()   3. 检测代码不足,性能分析         a. php.ini 中加入配置如下              \[Xdebug\]                       xdebug.profiler\_enable=on                       xdebug.trace\_output\_dir="I:\\Projects\\xdebug"                       xdebug.profiler\_output\_dir="I:\\Projects\\xdebug"          b. 执行情况的分析文件写入到”../Projects/xdebug”目录中          c. windows 安装wincachegrind    https://sourceforge.net/projects/wincachegrind/?source=typ\_redirect d.linux 安装webgrind      e.参考:http://www.linuxeye.com/Linux/2913.html          https://blog.csdn.net/Alex\_Best/article/details/6003784 六. 注意事项 1、避免生产环境开启profiler和trace,只需开启远程调试; 2、尽量使用xdebug.profiler\_enable\_trigger替代xdebug.profiler\_enable; 3、如果使用webgrind分析profiler,建议不要放入生产环境,因为其没有安全限制,任何人都可以访问; 4、Xdebug的功能虽然强大,但是要均衡性能开销; 七. 相关资料  https://confluence.jetbrains.com/display/PhpStorm/Debugging+PHP+Web+Applications+with+Run+Debug+Configurations https://xdebug.org/docs/remote   ssh -R 9001:localhost:9001mox@120.92.142.115