首頁  >  文章  >  開發工具  >  介紹xdebug在PHPSTORM的配置

介紹xdebug在PHPSTORM的配置

藏色散人
藏色散人轉載
2021-04-15 14:46:432284瀏覽

下面由phpstorm教學欄位來介紹xdebug在PHPSTORM中的配置,希望對需要的朋友有幫助!

介紹xdebug在PHPSTORM的配置

#php的設定:開啟xdebug

##1.在php.ini檔案的xdebug配置部分加入如下配置選項。主要的意義是設定phpstorm調試客戶端的位址、連接埠號碼和表示等。

   xdebug.remote_enable = on 
   xdebug.auto_trace = on
   xdebug.remote_handler=dbgp
   xdebug.remote_host=localhost
   xdebug.remote_port=9000
   xdebug.idekey=PHPSTORM
配置完成後,開啟phpstorm,設定(setting)php的解析器,此時應可以看到已安裝了xdebug擴展,否則檢查設定檔。

介紹xdebug在PHPSTORM的配置

2.偵錯單一PHP文件  

偵錯單一PHP文件,需設定DBgp參數,與xdebug的設定參數一致即可。如下圖所示。

介紹xdebug在PHPSTORM的配置

之後在run>edit configurations中選擇php script即可偵錯單一php檔。

以上是介紹xdebug在PHPSTORM的配置的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除