1、下载对应Xdebug版本
查看php版本【php7.1】:
php -v
搜索对应xdebug版本:
brew search xdebug
homebrew/php/php53-xdebug homebrew/php/php70-xdebug
homebrew/php/php54-xdebug homebrew/php/php71-xdebug
homebrew/php/php55-xdebug homebrew/php/xdebug-osx
homebrew/php/php56-xdebug
下载对应版本xdebug:
brew install homebrew/php/php71-xdebug
brew 无法搜到xdebug时:
1、git clone https://github.com/xdebug/xde...
2、cd xdebug
3、phpize
4、make && make install
2、修改php.ini配置文件
找到php.ini文件,添加xdebug相关配置:
[xdebug]
zend_extension = "/usr/local/Cellar/php71-xdebug/2.5.1/xdebug.so"#填写自己的.so文件目录
xdebug.remote_enable = 1
xdebug.remote_handler = dbgp
xdebug.remote_host = 127.0.0.1
xdebug.remote_port = 9001#端口号可以修改,避免冲突
xdebug.idekey = PHPSTROM
重启php-fpm
3、配置phpstorm
按照六个截图配置即可
1、
2、
3、
4、
5、
6、
配置完毕,重启apache或者nginx
点击小虫子,即刻开启debug之旅吧!
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。