终端里输入
# brew install homebrew/php/php56-xdebug
我的是Sierra,默认php版本是5.6,其他可以根据自己的php版本自行修改
可以在终端里输入#php -v看下版本,然后# brew search xdebug选择对应的xdebug下载cd /etc/
sudo cp php.ini.default php.ini
sudo vi php.ini
[xdebug]
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_autostart=1
zend_extension="/usr/local/Cellar/php56-xdebug/2.5.5/xdebug.so"
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9000
}
]
}