下面由phpstorm教學欄位介紹phpstorm設定debug調試,希望對需要的朋友有幫助!
先去下載xdebug.dll檔。將下面自己的phpinfo的文字資訊複製到https://xdebug.org/wizard.php中,下載它提供的xdebug.dll的版本
## 下載完成後將php_xdebug-2.6.0-7.2-vc15-x86_64.dll(我下載的版本)複製到php安裝目錄的ext資料夾中(D:\phpTools\php7\ext);#設定php. ini文件,在php.ini文件的最後加上下面的資訊:;; phpstorm的debug调试设置 [XDebug] zend_extension = "D:\phpTools\php7\ext\php_xdebug-2.6.0-7.2-vc15-x86_64.dll" ;xdebug.dll的路径 xdebug.profiler_append = 0 xdebug.profiler_enable = 1 xdebug.profiler_enable_trigger = 0 xdebug.profiler_output_dir = "\phpTools\php7\tmp" xdebug.profiler_output_name = "cachegrind.out.%t-%s" xdebug.remote_enable = 1 xdebug.remote_handler = "dbgp" xdebug.remote_mode = "req" xdebug.remote_port = 9000
以上是圖文詳解phpstorm設定debug調試的詳細內容。更多資訊請關注PHP中文網其他相關文章!