2 回答

TA貢獻(xiàn)1871條經(jīng)驗(yàn) 獲得超13個(gè)贊
這就是我運(yùn)行調(diào)試器的方式:
當(dāng)出現(xiàn)提示時(shí):
端口 9,000 已被占用 配置 IDE 使用其他端口?
單擊“是”(或者您可以從“工具”->“選項(xiàng)”打開設(shè)置:選擇“PHP”->“調(diào)試”)
將調(diào)試器端口設(shè)置為 9001。
更新 php.ini 以擁有端口 9001
[XDebug]
zend_extension="C:\xampp\php\ext\php_xdebug.dll"
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 1
xdebug.remote_enable = 1
xdebug.remote_host = "localhost"
xdebug.remote_handler = "dbgp"
xdebug.remote_mode = "req"
xdebug.remote_port = 9001
重新啟動(dòng)XAMPP

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超5個(gè)贊
我多年來一直使用 Netbeans 來編寫 PHP 代碼,但 xdebug 一直是一種痛苦。我什至無法給你任何指示。
但我去年改用了 VS code,我可以誠(chéng)實(shí)地說它改進(jìn)了我的代碼,而且 xdebug 實(shí)際上很容易連接,而且使用起來很有趣。
我建議你嘗試一下。
- 2 回答
- 0 關(guān)注
- 138 瀏覽
添加回答
舉報(bào)