How to debug php code in Dreamweaver cs5?

If it does not support debugging, are there any extensions or plugins there?

+3
source share
2 answers

Dreamweaver, even if it supports syntax highlighting of a PHP source, is not entirely known as a PHP development environment; so I'm not sure if it supports debugging PHP code.

Instead, I would recommend you use another PHP-oriented IDE, for example:

These three commands support debugging with the Xdebug extension.

+7
source

You can use FirePHP with Firebug on any IDE, including Dreamweaver. http://www.firephp.org/

+2
source

All Articles