Original text from: http://www.cnblogs.com/CLR010/p/5276077.html
1. First, download vs code from the official website. Address: https://code.visualstudio.com/
2. Install the extension php- For the debug installation steps, see https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-debug
The specific steps are: (Ctrl+p) Enter "ext install php-debug" in the text box and press Enter and it will be ready in a moment This extension appears
There is a download button in the lower right corner of the picture above (the screenshot shows that it has been downloaded, so it shows : "C:/wamp/bin/php/php5.5.12/php.exe" Add it
4. Configure debug
Select listen for xdebug
(the configuration file content does not need to be changed)
5. Start wampserver
6. Open the php file, press F9 on the specified line to set a breakpoint and start debugging
7. Access it in the browser
The above has introduced the use of vs code to write PHP and debug it, including aspects of it. I hope it will be helpful to friends who are interested in PHP tutorials.