Home>Article>Development Tools> A brief analysis of how VSCode debugs the code in the PhpStudy environment
VSCodeHow to debug the code in PhpStudy? The following article will introduce to you how to use VSCode to debug the code in the PhpStudy environment. I hope it will be helpful to you!

In recent months, all projects have been moved toVS Code(except because of Unity debugging problems, they have been used back toVisual Studio).
During this period, I took some time to help a friend with a PHP project. However, I have never used the PHP debugging function. Suddenly I found a bug in a project, but I couldn't print anything, and no error was thrown. . This is outrageous. Ever since, I started to fill in my knowledge blind spots again, and I also wanted to use PHP's debugging function. [Recommended learning:vscode tutorial,Programming teaching]
I am using WNMP Environment, the web server isNginx,Apacheenvironment is the same process.
Use the default version of PHP
Using the default version of PHP is quite simple, just open theXDebug debugging componentThat’s it.

After configuration, you can skip the following part and go directly to configure VS Code below.
Use a customized version of PHP
Why don’t I say that I am so slow in making things, because I often want to knowwhyandother methods. So instead of using the default PHP version, I wanted to update to the latest version of PHP 7.x.
First go to the official website to download the latestPHP 7.4.33-windows.php.net/download, I make...ntsversion. After the download is completed, put it in the corresponding directory of phpstudy, for exampleX:\path\to\phpstudy_pro\Extensions\php. Change the folder name to the same rule, for examplephp-7.4.33nts.
The package just downloaded does not contain theXDebugplug-in, we need to download and configure it ourselves.
XDebugThe official website has a very considerate function, which is to paste the information output by the localphp_infointo the input box, and it can help you analyze the information you want to download. version and give the download address. Enter the URLxdebug.org/wizardand click the *Analyse my phpinfo() output* button.
Copy the downloaded dll plug-in to thephp-7.4.33nts\extdirectory, and then add the following information tophp.ini(add directly Just at the end, make sure it is after theOPCacheconfiguration):
[XDebug] zend_extension="D:\phpstudy_pro\Extensions\php\php-7.4.33nts\ext\php_xdebug.dll" xdebug.mode = debug xdebug.start_with_request = yes xdebug.client_port = 9000 xdebug.remote_autostart = 1 xdebug.collect_params=1 xdebug.collect_return=1 xdebug.auto_trace=On xdebug.remote_enable=On xdebug.remote_host=localhost xdebug.remote_port=9000 xdebug.remote_handler=dbgp
Remember to change the value ofzend_extensionto the actual path and actual location of your plug-in name.
First restart the web server (whether Nginx or Apache), and then usephpinfo()to print the PHP information to see if There isXDebugplugin.

Make sure thePHP Debugplug-in has been downloaded in VSCode. You can search to download, or click here to jump to download -marketplace.visualstudio.com/items?itemN….
OpenFile->Preferences->Settings, add the following content in the configuration:
"php.validate.executablePath": "D:/phpstudy_pro/Extensions/php/php-7.4.33nts/php.exe"
Finally click *Run and Debug* button, add a configuration in the createdlaunch.json, or find an existing configuration to modify:
{ "name": "Listen for Xdebug", "type": "php", "request": "launch", "port": 9000 }
For more knowledge about VSCode, please visit :vscode basic tutorial!
The above is the detailed content of A brief analysis of how VSCode debugs the code in the PhpStudy environment. For more information, please follow other related articles on the PHP Chinese website!