Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to debug php code in dreamweaver cs5?

If it doesn't support debugging are there any extensions or plugins out there?

like image 837
rahul dagli Avatar asked Nov 23 '25 04:11

rahul dagli


1 Answers

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

Instead, I would recommend you use another more PHP-Oriented IDE, like :

  • Eclipse PDT (free -- not sure if it's maintained as much as it was a couple of month ago)
  • netbeans (free)
  • PHPStorm (not free)

Those three all support debugging with the Xdebug extension.

like image 154
Pascal MARTIN Avatar answered Nov 24 '25 18:11

Pascal MARTIN