[关闭]
@a5635268 2016-04-23T21:12:32.000000Z 字数 526 阅读 1062

【PHP优化篇】xdebug

PHP


安装xdebug

  1. 首先把PHPinfo的输出贴到这个地方获取相应的xdebug版本;
    https://xdebug.org/wizard.php

  2. 检测完之后xdebug官网会给出后续的步骤;

  3. 然后在php.ini中配置如下内容:
  1. [xdebug]
  2. zend_extension = "E:\wnmp\php\ext\php_xdebug-2.4.0-5.5-vc11-x86_64.dll"
  3. xdebug.remote_enable = On
  4. xdebug.remote_handler = dbgp
  5. xdebug.remote_host= localhost
  6. xdebug.remote_port = 8888
  7. xdebug.idekey = "PHPSTORM"
  8. xdebug.trace_output_dir = "E:\wnmp\debug\xdebug_log"
  9. xdebug.profiler_output_dir = "E:\wnmp\debug\xdebug_log"

4. 接下来参考文章
https://segmentfault.com/a/1190000004096627
https://segmentfault.com/a/1190000004339411

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注