vscode What should I do if PHP cannot be debugged? How to debug php with vscode
xdebug debugging vscode
Download xdebug.dll extension library
php.ini configuration
[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 Install the plug-in 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 }
There are two options when debugging: select "Listen for XDebug" to mark yourself to open the browser and enter the URL -Enter breakpoint.
Select "Launch currently open script" to mark the current file for debugging.
Recommended learning: vscode tutorial
The above is the detailed content of What to do if vscode PHP cannot be debugged. For more information, please follow other related articles on the PHP Chinese website!