vscode PHP無法偵錯怎麼辦? vscode偵錯php的方法
xdebug偵錯vscode
#下載xdebug.dll擴充程式庫
php.ini設定
#[XDebug] xdebug.remote_enable = 1 xdebug.remote_autostart = 1 zend_extension="D:\phpstudy-2018\PHPTutorial\php\php-5.5.38\ext\php_xdebug.dll"
vscode 安裝外掛程式php debug,php xdebug
add configuration: { "name": "Listen for XDebug", "type": "php", "request": "launch", "port": 9000 }, { "name": "Launch currently open script", "type": "php", "request": "launch", "program": "${file}", "cwd": "${fileDirname}", "port": 9000 }
偵錯時有兩個選項:選擇"Listen for XDebug"標示自己開啟瀏覽器,輸入網址-進入斷點。
選擇"Launch currently open script"標示除錯目前檔案。
推薦學習:vscode教學
#以上是vscode PHP無法調試怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!