Debugging php with Netbeans - Querying a news source

I am using var_dump. Everywhere. This is a mess. And slowly. I would like to lock the variable, right-click, select a test, and it will show me the output results for each period or my script in the IDE window. -

1) Does something like this exist in Netbeans?

2) No matter what could be β€œbetter” here, I wonder if anyone can advise me a few books / resources on this subject: "Debugging for beginners"?

Update: I understand that netbeans have some integration possible. However, the hard part is to find newbie resources given this integration. I mean, I need to understand how the debugging tool works. Truth. But I also need to understand how debugging works (in the broad sense of the word). :)

Thank you very much in advance.

+1
source share
2 answers

XDebug. To configure it to work with Netbeans, see here: http://wiki.netbeans.org/HowToConfigureXDebug

+2
source

1) The debugging solution for PHP is XDebug. He got everything you need, for example, to check for variables.

2) Recently, I myself was looking for it. Therefore, I am sure that there is nothing like it. XDebug.org and Google will help you.

+1
source

All Articles