Xdebug在OS X El Capitan

时间:2017-01-18 22:35:51

标签: php macos phpstorm xdebug

我已经完成了以下步骤,以便使用PhpStorm启用xdebug:

1)将phpinfo()粘贴到https://xdebug.org/wizard.php并获取正确的xdebug版本到我的系统xdebug-2.5.0.tgz(php版本为5.6.27)

2)运行brew install homebrew/php/php56-xdebug

安装xdebug

3)编辑位于phpinfo()的php.ini,我添加以下行

zend_extension=/usr/local/Cellar/php56/5.6.27_4/lib/php/extensions/no-debug-non-zts-20131226/xdebug.so
xdebug.remote_autostart=on
xdebug.remote_enable=on
xdebug.remote_enable=1
xdebug.remote_mode="req"
xdebug.remote_log="/usr/local/var/log/xdebug.log" 
xdebug.remote_host=xxxx.com
xdebug.remote_port=9000
xdebug.remote_handler="dbgp"
xdebug.idekey="PHPSTORM"

4)PhpStorm可以识别xdebug,但是下面有一些错误

enter image description here

5)尝试进行Web服务器调试验证,获取

enter image description here

那么我应该怎么做才能解决它?

0 个答案:

没有答案