1. 程式人生 > >xdebug安裝

xdebug安裝

owin download 找到 ima oval php7 gpo ges man

在mac打開終端:

1.查詢php版本

php -v

查的PHP版本是:

PHP 7.1.13

2.輸入命令:

brew search xdebug

3.找到對應php版本的xdebug:

brew install homebrew/php/php71-xdebug

==> Installing php71-xdebug from homebrew/php

==> Downloading https://homebrew.bintray.com/bottles-php/php71-xdebug-2.5.5.el_c

######################################################################## 100.0%

==> Pouring php71-xdebug-2.5.5.el_capitan.bottle.1.tar.gz

==> Caveats

To finish installing xdebug for PHP 7.1:

* /usr/local/etc/php/7.1/conf.d/ext-xdebug.ini was created,

do not forget to remove it upon extension removal.

* Validate installation via one of the following methods:

*

* Using PHP from a webserver:

* - Restart your webserver.

* - Write a PHP page that calls "phpinfo();"

* - Load it in a browser and look for the info on the xdebug module.

* - If you see it, you have been successful!

*

* Using PHP from the command line:

* - Run `php -i "(command-line ‘phpinfo()‘)"`

* - Look for the info on the xdebug module.

* - If you see it, you have been successful!

==> Summary

?? /usr/local/Cellar/php71-xdebug/2.5.5: 4 files, 209.8KB

4.配置xdebug

在ext-xdebug.ini配置,

vi /usr/local/etc/php/7.1/conf.d/ext-xdebug.ini 

如下配置:

[xdebug]
zend_extension="/usr/local/opt/php71-xdebug/xdebug.so"
xdebug.remote_enable=1
xdebug.remote_host="localhost"
xdebug.remote_port=9001
xdebug.profiler_enable=1
xdebug.profiler_output_dir="/Users/lst/develop/debug/"
xdebug.idekey="PHPSTORM"

5.配置完成,需重啟

重啟php-fpm,或是Apache

6.在phpstorm中配置xdebug

1)打開Preferences,在Languages&Frameworks找到php,

技術分享圖片

2)在php executable裏找到bin下的php,選擇brew安裝的PHP版本,這裏使用的是php7.1的bin下的php路徑

/usr/local/Cellar/php71/7.1.13_24/bin/php

技術分享圖片

3)端口號要對應

要與ext-xdebug.ini配置中xdebug.remote_port的端口號一致

技術分享圖片

4)配置Debug下的DBGp proxy

技術分享圖片

5)配置servers

技術分享圖片

6)點擊phpstorm右上角的三角形,選擇Edit Configurations,配置服務器信息,添加項目調試開發地址,保存完後phpstorm配置完成。

技術分享圖片

7)重啟服務器 nginx或Apache

8)點擊小蟲子,即刻開啟debug

技術分享圖片

9) chrome安裝xdebug

在安裝完xdebug後,打開xdebug選項,把IDE key配置得跟之前設置的一樣PHPSTORM

技術分享圖片

xdebug安裝