下載地址
phpstudy:https://www.xp.cn/download.html
vscode:https://code.visualstudio.com/ 設(shè)置
phpstudy版本:7.3.4nts
[Xdebug]
zend_extension=D:/phpstudy_pro/Extensions/php/php7.3.4nts/ext/php_xdebug.dll
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.auto_trace=On
xdebug.trace_output_dir=D:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.trace
xdebug.profiler_enable=On
xdebug.profiler_output_dir=D:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.profiler
xdebug.remote_enable=On
xdebug.remote_autostart=On
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
vscode :
ctrl+,調(diào)出setting,或則文件->首選項->設(shè)置
php路徑設(shè)置
{
"window.zoomLevel": 1,
"git.confirmSync": false,
"git.autofetch": true,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
//關(guān)鍵點
"php.validate.executablePath": "D:/phpstudy_pro/Extensions/php/php7.3.4nts/php.exe"
}
Xdebug設(shè)置
{
// 使用 IntelliSense 了解相關(guān)屬性。
// 懸停以查看現(xiàn)有屬性的描述。
// 欲了解更多信息,請訪問: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"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
}
]
}
驗證
vscode F5啟動調(diào)試
瀏覽器輸入:localhost/test.php
到此這篇關(guān)于phpStudy vscode 搭建debug調(diào)試的教程詳解的文章就介紹到這了,更多相關(guān)phpStudy vscode 搭建debug調(diào)試內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Ubuntu下開啟php調(diào)試模式報錯信息解決辦法
- 如何運行/調(diào)試你的PHP代碼
- PHPStorm 2020.1 調(diào)試 Nodejs的多種方法詳解
- PhpStorm+xdebug+postman調(diào)試技巧分享
- php開發(fā)最強大的IDE編輯的phpstorm 2020.2配置Xdebug調(diào)試的詳細(xì)教程
- 解決windows上php xdebug 無法調(diào)試的問題
- Vagrant(WSL)+PHPStorm+Xdebu 斷點調(diào)試環(huán)境搭建
- PhpStorm 如何優(yōu)雅的調(diào)試Hyperf的方法步驟
- PHP如何打印跟蹤調(diào)試信息