Mac+PhpStorm+Xdebug配置

一、下載對應Xdebug版本php

查看php版本【php7.1】:nginx

php -v

搜索對應xdebug版本:apache

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:php7

brew install homebrew/php/php71-xdebug

二、修改php.ini配置文件phpstorm

找到php.ini文件,添加xdebug相關配置:ide

[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-fpmphp-fpm

三、配置phpstorm
按照六個截圖配置便可
一、
clipboard.png
二、
clipboard.png
三、
clipboard.png
四、
clipboard.png
五、
clipboard.png
六、
clipboard.png
配置完畢,重啓apache或者nginx
點擊小蟲子,即刻開啓debug之旅吧!
clipboard.pngspa

clipboard.png

相關文章
相關標籤/搜索