Notepad ++ does not have debugging capabilities or any plug-in for debugging - is that true?

For those who code in Notepad ++, I just want to confirm that Notepad ++ does not have a built-in debugging function (that is, the ability to set breakpoints, step by step, and view values ​​in the middle of execution). I am new to PHP programming and looking for a good editor / IDE to use. Since I need a debugging feature, your answer would really help me narrow my choices. Please note that I recently downloaded and actually used Notepad ++ at the moment and cannot find the built-in debugger or plug-in for debugging in the Notepad ++ menu. Thanks in advance.

+4
source share
3 answers

There is a DBGP Plugin for NP ++ that connects to xDebug if you want to try it.

I found decent installation / setup instructions here , but, as with most things related to a computer, YMMV.

+9
source

I like the new Eclipse Helios with PDT 2.2, which connects to xDebug. If you have not used eclipse, you should check out the new version. The new PDT build is by far the best PHP debugger I've used.

+1
source

Try Eclipse w / Zend PDT. The Zend debugger is much stronger than xDebug, and it also parses your code so that you can ctrl-click a function call and it will take you to the declaration.

-1
source

All Articles