search
HomeDevelopment ToolsVSCodeDetailed graphic explanation of VSCode debugging code in PhpStudy

This article brings you relevant knowledge about VS Code. It mainly introduces how to use VS Code to debug the code in the PhpStudy environment. Friends who are interested can take a look at it together. I hope it will be helpful to you. Everyone is helpful.

In recent months, all projects have been moved to VS Code (except because of Unity debugging problems, they have been used back to Visual Studio), and PHP has been abandoned. The strongest PhpStorm.

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.

Configuring PhpStudy

I am using a WNMP environment, the web server is Nginx, and the Apache environment is the same process .

Use the default version of PHP

Using the default version of PHP is quite simple, just open the XDebug debugging component.

Detailed graphic explanation of VSCode debugging code in PhpStudy

#After configuration, you can skip the following part and go directly to configure VS Code.

Use a customized version of PHP

Why don’t I say that I am so slow in making things, because I often want to know why and Other methods. So instead of using the default PHP version, I wanted to update to the latest version of PHP 7.x.

Download the new version of PHP

Go to the official website to download the latest PHP 7.4.33 - https://windows.php.net/download , I am using the nts version. After the download is completed, put it in the corresponding directory of phpstudy, for example X:\path\to\phpstudy_pro\Extensions\php. Change the folder name to the same rule, for example php-7.4.33nts.

Download and configure XDebug

The package just downloaded does not contain the XDebug plug-in, we need to download and configure it ourselves.

XDebug The official website has a very considerate function, which is to paste the information output by the local php_info into the input box, and it can help you analyze the information you want to download. version and give the download address. Enter the URL https://xdebug.org/wizard and click the *Analyse my phpinfo() output* button.

Copy the downloaded dll plug-in to the php-7.4.33nts\ext directory, and then add the following information to php.ini (add directly Just at the end, make sure it is after the OPCache configuration):

[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 of zend_extension to the actual path and actual location of your plug-in name.

Test whether the configuration is successful

First restart the web server (whether Nginx or Apache), and then use phpinfo() to print the PHP information to see if there is XDebug Plugins.

Detailed graphic explanation of VSCode debugging code in PhpStudy

Configure VS Code

Make sure the PHP Debug plug-in has been downloaded in VSCode. You can search to download, or click here to jump and download - https://marketplace.visualstudio.com/items?itemName=xdebug.php-debug

Open file->Preferences-> ;Set , add the following content in the configuration:

"php.validate.executablePath": "D:/phpstudy_pro/Extensions/php/php-7.4.33nts/php.exe"

Finally click the *Run and debug* button directly, and add it to the created launch.json A configuration, 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 Detailed graphic explanation of VSCode debugging code in PhpStudy. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:juejin. If there is any infringement, please contact admin@php.cn delete
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实战:vscode中开发一个支持vue文件跳转到定义的插件实战:vscode中开发一个支持vue文件跳转到定义的插件Nov 16, 2022 pm 08:43 PM

vscode自身是支持vue文件组件跳转到定义的,但是支持的力度是非常弱的。我们在vue-cli的配置的下,可以写很多灵活的用法,这样可以提升我们的生产效率。但是正是这些灵活的写法,导致了vscode自身提供的功能无法支持跳转到文件定义。为了兼容这些灵活的写法,提高工作效率,所以写了一个vscode支持vue文件跳转到定义的插件。

【整理分享】10个VSCode中用于Flutter开发的最佳扩展【整理分享】10个VSCode中用于Flutter开发的最佳扩展Apr 10, 2023 pm 07:13 PM

本篇文章给大家整理分享10个用于Flutter开发的最佳VSCode扩展,希望对大家有所帮助!

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

PHP和CGI的开发工具和调试技巧:提高开发效率PHP和CGI的开发工具和调试技巧:提高开发效率Jul 21, 2023 pm 03:12 PM

PHP和CGI的开发工具和调试技巧:提高开发效率摘要:PHP和CGI是两种常用的Web开发语言,为了提高开发效率,开发人员需要掌握一些专用的开发工具和调试技巧。本文将介绍几种常用的PHP和CGI开发工具,以及一些调试技巧,帮助开发人员更高效地进行开发和调试。一、开发工具SublimeTextSublimeText是一款功能强大的文本编辑器,支持PHP和C

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!