What are the best resources do you recommend for learning php debugging?
Is there any specific book, screencast, blog post or article that you really found useful?
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Here's a list of what I could find in a quick google search. The second link is software, the rest are articles except from the last two which are videos. I personally liked the last one since it uses Np++ and Xdebug.
Anyway, most of the time all you need to do is keep your code readable and name your variables and functions correctly, don't be afraid of using long names for them like The video I mentioned is rather slow paced so you're probably better off just checking the article it's based on: Debugging PHP using Xdebug and Notepad++ |
|||||
|
|
|
old good article from IBM DeveloperWorks Though the main idea of debugging is quite simple: you have to understand what your program does. And when something goes wrong, you have to do just step-by-step checking, stopping at certain points, checking values of variables. This way you can determine a problem part. |
||||
|
|
|
I really find useful the following function:
While far from a debugger, it's really useful for inspecting variables. Using it I hardly ever need a real debugger, i just sprinkle the code where I need to inspect and hit reload. There is also var_dump but I prefer the first approach.
|
|||||
|