xdebug在PHPSTORM中的配置

2021-09-13 11:35:46 字數 660 閱讀 2572

php的配置:開啟xdebug

在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擴充套件,否則檢查配置檔案。

2.除錯單個php檔案

除錯單個php檔案,需要配置dbgp引數,與xdebug的配置引數一致即可。如下圖所示。

之後在run>edit configurations中選擇php script即可除錯單個php檔案。

phpstorm設定xdebug除錯

wamp開發環境安裝完成以後,開啟網頁,輸入 localhost 檢測xdebug是否開啟 3.若xdebug已開啟,請找到你wamp或者phpstudy的安裝目錄 首先找到安裝目錄的bin資料夾,然後開啟apache目錄,開啟apache2.4.27目錄,開啟bin目錄,找到php.ini檔案並開...

PHPStorm配置Xdebug小坑

xdebug.idekey phpstrom phpstrom除錯中一定要加入這條。其他網上都可以找到。就不浪費時間了。xdebug zend extension d lamp php ext php xdebug 2.7 0rc2 7.3 vc15 x86 64.dll 是否允許xdebug跟蹤函...

phpstorm中Xdebug的使用

目 錄1.xdebug簡介 2.xdebug的安裝 操作 2.1環境搭建 2.2配置php.ini 2.3配置phpstorm 2.4配置php debug 2.5進行除錯 1.xdebug簡介 xdebug是乙個開放源 的php程式偵錯程式 即乙個debug工具 可以用來跟蹤,除錯和分析php程式...