XDebug is a helpful tool when debugging PHP code. XDebug is a step debugging tools that helps you inspect functionality of PHP code in a cleaner way than regularly writing dump/log statements.
I will not get into details here about setting up XDebug on a server, but you can find that with some Internet searching. Instead, this post is about how to use XDebug within Visual Studio Code.
Install the Extension
First, install the extension PHP Debug (xdebug.php-debug) from the Visual Studio Code extension directory.
Screenshot of the extension in the directory
Start the Listener
To start the XDebug listener:
- Go to the “Run and Debug” tab (Ctrl + Shift + D) in the main app sidebar.
- Click the play button beside the XDebug listener. Depending on your developer environment, you may have other listeners as well.
A small window will be added to your workspace with a few buttons. While everything is running smoothly, it will be a pause, a stop, and a restart button. While stopped because of a breakpoint, it will provide other options to continue, step over, step into, and step out.
Monitor Notices, Warnings, etc
You can monitor for any notices, warnings, errors, or exceptions that occur while the listener is running.
- Go to the “Run and Debug” tab (Ctrl + Shift + D) in the main app sidebar.
- If it is collapsed, expand the “Breakpoints” accordion section.
- Select under what conditions you want to break and show you results, e.g. Notices, Warnings.
Add a Breakpoint
You can add a breakpoint at a line in the code and have XDebug report the value of variables as of the start of that line.
- In the VS Code editor for the code you want to check, scroll to the left of the line of code you want to break. This will cause a little red dot to appear. Click on that red dot to create the breakpoint.
- Carry out your test scenario (e.g. load the page that calls that PHP in your browser).
- See the results with the values of each variable at the breakpoint, within the Run and Debug window in VS Code.
Top comments (0)