1. How to Debug PHP Code with Better Highlighting to Locate Important Issues Easier in Debug Logs
Updated on: 2021-03-25
Posted on: 2021-03-25
Debugging applications is a common activity that many developers perform in order to find and fix issues in their code.
As part of the debugging activity, displaying values of variables in certain parts of the code that has issues, is an essential part of the developer work.
This class provides a solution to display variable values that can format the values in a colored way to highlight different parts of the values.
The class can also display the name of the section of the code that is being inspected by showing that name near the values of the variable being displayed, as if it was the name of a function that is calling some code passing the variable value as parameter.
More ... Post a comment See comments (0) Trackbacks (0)
As part of the debugging activity, displaying values of variables in certain parts of the code that has issues, is an essential part of the developer work.
This class provides a solution to display variable values that can format the values in a colored way to highlight different parts of the values.
The class can also display the name of the section of the code that is being inspected by showing that name near the values of the variable being displayed, as if it was the name of a function that is calling some code passing the variable value as parameter.
More ... Post a comment See comments (0) Trackbacks (0)