vote up 4 vote down star
3

I am coming from a C++ background and am used to testing code by setting breakpoints, viewing variables in the debugger etc.

I am now doing web development (using the symfony framework). what I really miss is not being able to set a breakpoint when a particular action is performed (e.g. a url clicked etc). Is there a FREE (GPL or other license) PHP IDE that can allow me to set breakpoints etc as described above?

flag

0% accept rate

8 Answers

vote up 0 vote down

I recommend you netbeans its free. it is available for all platforms, and mostly it is good for editing php, jsp, java, css, html, ...

believe me, i'm using it for php development and its the best suited ide i can find...

link|flag
vote up 0 vote down

PhpEd is awesome. Not free though

link|flag
vote up 0 vote down

I'm going to have to second Aptana. If you've ever used DreamWeaver it's a lot like that, with all the useless garbage stripped out. Also has built in support for repositories, ajax, debug mode and works on any OS.

link|flag
vote up 0 vote down

I will have to say php NuSphere PhpEd is the one I like most. It has all the features of good editor. And it allows debugging (setting break points too). You will have to download and add dbgwizard to the local server. I am not sure if it can do debugging on remote server.

link|flag
vote up 1 vote down

As the other answerers have mentioned, there are a number of PHP-savvy IDEs which integrate with XDebug. I thought I'd just add that these are PHP debuggers, and since PHP is a server-side language, it's not going to help you debug client-side actions, such as clicking a link.

If there's code you want to be pausing/viewing when the client performs actions, then your best bet is a Javascript debugger. Mozilla has one called Venkman (named after Bill Murray's character in Ghostbusters -- awesome!), but I've always found Firebug to be much more useful. Using it is a doddle:

<a href="blah.html" id="myLink">Clicky</a>

document.getElementById('myLink').onclick = function() {
    debugger; // this sets a breakpoint, effectively
};

You can also browse your JS source with Firebug and add breakpoints to code from there.

link|flag
Had to Google "doddle". "child's play, cinch, duck soup, piece of cake, pushover, breeze, walkover, picnic, snap" – ChuckO Nov 27 at 13:47
vote up 0 vote down

First I agree: Netbeans is the best current PHP IDE

As for debugging you might follow a different approach - as symfony tends to jump between requests

  • It will be quite difficult to follow it with xdebug
  • Also there is a high chance that you'll run your code on a remote server

We found FirePHP (FireBug extension) very useful for these cases.

There is a great symfony plugin implementation for it: sfFirePHPPlugin

http://www.symfony-project.org/plugins/sfFirePHPPlugin

Be sure to create code templates for it in Netbeans! ;)

$firephp = sfFirePHP::getInstance(true);
$firephp->fb(${variable}, '${caption}');
link|flag
interesting, will take a look at this (Firebug rulez !!) – skyeagle Oct 30 at 9:26
vote up 2 vote down

I can suggest you Aptana (www.aptana.com). You can set breakpoints, jump to another breakpoint in debug mode. You can use Firefox addon of Aptana.

link|flag
I like the idea of a firefox add-in - are you sure about this?. AFAIK, the browser is served the output of the server side PHP script - I am not sure how you can debug the PHP script in a browser (it as an aside, it also does raise some security concerns if even it is possible - am I missing something?) – skyeagle Oct 30 at 9:25
I want to add someting my Aptana suggestion. They released 2.0 version recently. But they announced that they won't release any version of their PHP plugin. They say that they will use Eclipse as a plugin for PHP development. If you want an IDE for PHP development you can use Aptana with Eclipse as a plug in or you can download Eclipse PDT as a stand alone program. I am using Eclipse PDT for PHP development. – Erkan BALABAN Nov 4 at 7:35
vote up 10 vote down

NetBeans for PHP uses xdebug, in which you can set breakpoints among other functionality. It's the best IDE for PHP I've tried.

From http://www.netbeans.org/features/php/index.html

Debug PHP code using Xdebug: You can inspect local variables, set watches, set breakpoints, and evaluate code live. Navigate to declarations, types and files using Go To shortcuts and hypertext links. Use a global PHP include path for all projects or customize it per project.

The NetBeans IDE for PHP also offers command-line debugging: The PHP program output appears in a command line display in the IDE itself and you can inspect the generated HTML without having to switch to a browser.

You can debug scripts and web pages, either locally or remotely. The NetBeans PHP debugger integration allows you to map server paths to local paths to enable remote debugging.

Edit,

I've looked up Eclipse PDT as well, and it uses Zend Debugger (or xdebug, but ZD seems to be default debugger). I have never used it thou, but Eclipse is a solid IDE as well - but I've never had the need for switching from NetBeans. Anyway - IBM wrote a white paper on debugging PHP in Eclipse PDT using Zend Debugger. Happy reading. ;)

link|flag
UEStudio also has XDebug integration too – nickf Oct 28 at 13:09
I use NetBeans for PHP/Zend Framework development, and I have found it more agreeable than Eclipse PDT ... Eclipse PDT requires a lot of configuration to get it to work how I want it. – Eugene M Oct 28 at 13:20
Think I'll be going with Netbeans (I have already installed it). From online research I have seen. Eclipse is "big and slow", difficult to configure (though with a larger usebase), but Netbeans allows you to hit the ground running even though may be slight less feature rich as Eclipse. So Netbeans it is for me - I dont want a steep learning curve on just configuration let alone using the IDE etc ... – skyeagle Oct 30 at 9:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.