phpStudy vscode 구축 debug 디 버 깅 튜 토리 얼 상세 설명
phpstudy: https://www.xp.cn/download.html
vscode:https://code.visualstudio.com/설정
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+,설정 또는 파일->첫 번 째 옵션->설정
php 경로 설정
{
"window.zoomLevel": 1,
"git.confirmSync": false,
"git.autofetch": true,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
//
"php.validate.executablePath": "D:/phpstudy_pro/Extensions/php/php7.3.4nts/php.exe"
}
Xdebug 설정
{
// IntelliSense 。
// 。
// , : 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 디 버 깅 시작
브 라 우 저 입력:localhost/test.php
phpStudy vscode 구축 debug 디 버 깅 에 관 한 이 튜 토리 얼 에 대한 상세 한 설명 은 여기까지 입 니 다.더 많은 관련 phpStudy vscode 구축 debug 디 버 깅 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 조회 하 시기 바 랍 니 다.앞으로 많은 지원 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
phpStudy vscode 구축 debug 디 버 깅 튜 토리 얼 상세 설명다운로드 주소 phpstudy: vscode: 설정 phpstudy 버 전:7.3.4nts vscode : ctrl+,설정 또는 파일->첫 번 째 옵션->설정 php 경로 설정 Xdebug 설정 검증 하 다. vsc...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.