vagrant & centos & phpstorm & xdebug 除錯
阿新 • • 發佈:2018-12-15
f!!!! 溫馨提醒 PHP版本一點要和xdebug版本對應
###檢視安裝的xdebug 01
[[email protected] php.d]# yum list | grep xdebug
Repodata is over 2 weeks old. Install yum-cron? Or run: yum makecache fast
php-composer-xdebug-handler.noarch 1.3.0-1.el7 epel
php-pecl-xdebug.x86_64 2.6.1-1.el7.remi.7.2 remi-php72
php54-php-pecl-xdebug.x86_64 2.4.1-1.el7.remi remi-safe
php55-php-pecl-xdebug.x86_64 2.5.5-1.el7.remi remi-safe
php56-php-pecl-xdebug.x86_64 2.5.5-1.el7.remi remi-safe
php70-php-pecl-xdebug.x86_64 2.6.1-1.el7.remi remi-safe
php71-php-pecl-xdebug.x86_64 2.6.1-1.el7.remi remi-safe
php72-php-pecl-xdebug.x86_64 2.6.1-1.el7.remi remi-safe
php73-php-pecl-xdebug.x86_64 2.7.0~beta1-1.el7.remi remi-safe
[ [email protected] php.d]# yum install php-pecl-xdebug
###檢視安裝的xdebug 02
[[email protected] php.d]# ll /etc/php.d/ | grep xdebug
-rw-r--r-- 1 root root 37784 Aug 4 05:54 15-xdebug.ini
[[email protected] php.d]# vim 15-xdebug.ini
zend_extension=xdebug.so
xdebug.idekey = "PHPSTORM"
xdebug.default_enable = 1
xdebug.remote_connect_back = 1
xdebug.remote_port = 9001
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_handler="dbgp"
###檢視安裝的xdebug 03
[ [email protected] php.d]# php -v
PHP 7.2.9 (cli) (built: Aug 15 2018 09:19:33) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
with Xdebug v2.6.1, Copyright (c) 2002-2018, by Derick Rethans
###這裡的配置不要寫錯了,remote_connect_back這項很重要
[[email protected] php.d]# vim 15-xdebug.ini
zend_extension=xdebug.so
xdebug.idekey = "PHPSTORM"
xdebug.default_enable = 1
xdebug.remote_connect_back = 1
xdebug.remote_port = 9001
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_handler="dbgp"
或者
zend_extension=xdebug.so
xdebug.idekey="PHPSTORM"
xdebug.remote_connect_back = 1 //這項不要丟了
xdebug.remote_handler = "dbgp"
xdebug.remote_mode = "req"
xdebug.remote_host=127.0.0.1
xdebug.remote_enable=on
xdebug.remote_port = 9001
xdebug.remote_autostart = no
---------------虛擬機器配置完畢------------------
windows中配置
04 Tools-->Vagrant
05 Languages & Frameworks -->PHP--> Debug
06 Languages & Frameworks -->PHP--> Debug --> DBGp Proxy
07 Languages & Frameworks -->PHP--> Servers
08 Run --> Edit Configurations 新增PHP Web Page
09接下來接可以斷點除錯了
配圖說明: