第一步 PHP安裝Xdebug擴(kuò)展
[xdebug]
zend_extension=xdebug.so
xdebug.idekey="PhpStorm"
xdebug.auto_trade=on
xdebug.auto_profile=on
xdebug.collect_params=on
xdebug.collect_return=on
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9013
xdebug.remote_autostart=on
說明 : 配置完成后 phpinfo(); 查看是否安裝完成
ps : remote_port 是在phpstorm里面所需要用到的端口
第二步 配置PhpStorm
-
打開Phpstorm Files->Settings->Debug
將上面右側(cè)有個(gè)Debug port :9000改成我們第一步配置里面配置的端口號(hào) 9013
-
將下面圖片IDE key 填上 可以打開phpinfo();查看xdebug里面有這個(gè)參數(shù) ; host是域名訪問地址; prot 就是端口名稱
然后繼續(xù)配置Servers