1. 程式人生 > >PHPstorm XDBUG 安裝

PHPstorm XDBUG 安裝

一:phpstudy整合環境。首先你要下載對應php版本的 XDbug檔案(我是使用7.2版本)

二:你需要在php.ini 檔案中配置,將原有的配置註釋。

;以下xdbug配置

[XDebug]

zend_extension="D:\phpstudy\PHPTutorial\php\php-7.2.1-nts\ext\php_xdebug-2.7.0alpha1-7.2-vc15-nts.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir ="D:\phpStudy\tmp\xdebug"
xdebug.trace_output_dir ="D:\phpStudy\tmp\xdebug"
xdebug.profiler_output_name = "cache.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = 9000
xdebug.remote_mode = "req"
xdebug.idekey = PHPSTORM
;注意這個autostart很關鍵,我就是加了這個才跑起來的
xdebug.remote_autostart=1

路徑部分換成自己安裝的路徑

三:在phpstorm中配置

(如果沒有server 就點選filter debug.... 建立一個。名字隨意)

四:開啟debug(右上角電話那個圖示),然後隨便打一個斷點。執行專案。