I'm looking for suitable PHP Editor or IDE with syntax auto-completion. I've tried trial versions of programs like Zend Studio, PHPDesigner, NetBeans PHP, NuSphere PhpED, and similar -- but none of them fully satisfied me.

I quite liked hint window with detailed info about what function does and what it returns. Also I liked the way NetBeans auto-complete code (for example inserts all required parameters in function declaration as "dummy fields" and then you can jump between them using TAB in order to edit them). On the other hand, environment of NetBeans doesn't belong to the nicest. In this regard I prefer PHPDesigner with its sleek and light interface. At this moment I don't use any of the debugging options, since I don't know yet how to use profiller, breakpoints, watches and what not, so at this point my only concern is good autocompletion. For this purpose NetBean would be great choice, but with future in mind I am not sure debugging will be good in NetBeans, especially as I would prefer to use remote Linux server for this.

So in short, I'm looking for editor that:

  • Have similar code auto-completion (IntelliSense) like NetBeans
  • Allow you to debug code using remote server (or sets up own debugging server like PHPDesigner does) without need to run Apache and similar on local computer
  • Is preferably easy to use / intuitive interface

Any ideas?

link|improve this question

2  
I would take a look at some of these questions: stackoverflow.com/search?q=php+ide – Christopher Altman Apr 21 '10 at 2:56
eclipse is the best one so far..( personal choice ) – Hanseh Apr 21 '10 at 2:57
Duplicate and Netbeans – The Pixel Developer Apr 21 '10 at 3:20
feedback

7 Answers

free and intuitive, has auto-completion and ssh, aptana IDE

link|improve this answer
aptana have been stop development. – SilverNight May 5 '10 at 16:58
stop development? i didn't know bout dat...hmmm – Nazmin May 6 '10 at 1:57
Not stopped, but slowed down. – DMan May 9 '10 at 22:57
feedback

Several years ago I did an evaluation of php Eclipse and Nusphere phED. Although php Eclipse has a lot of nice features, it was very buggy and unstable compared to phpEd. I especially like phpEd's remote debugging, sftp upload/download and synching for distributing code, and it's robustness/stability.

link|improve this answer
The only thing missing is source format :( – AntonioCS Apr 21 '10 at 9:28
It can be integrated with 3rd party code formatters, but that's not something I've used so I cannot vouch for it. I like the way it integrates with 3rd party source code control instead of implementing it's own, though, because it means I can use TortoiseSVN both in windows explorer and in phpEd instead of learning different interfaces. – Charlotte Moller Apr 21 '10 at 23:50
feedback

You will definitely want to give devPHP a try. It is a full-featured PHP IDE that provides:

  • auto-complete
  • class browser
  • built-in FTP tools
  • internal and external previews
  • integration with the PHP documentation
  • many common text-editing features
link|improve this answer
I just checked out devPHP. It's horrible!!! I now it's free... but it sucks!! I tried to create a project and it just asked me for a folder nothing else... That's a weird concept for project – AntonioCS Apr 21 '10 at 9:28
@Antonio: no, it's not - you need a folder to put the PHP files in that you create. – George Edison Apr 21 '10 at 17:21
@George: Yes I know but in ide's like zend or nusphere you have many more options. You also have a treeview of the files. Didn't see any of that in devphp – AntonioCS Apr 22 '10 at 7:39
devPHP used to be okay a couple years ago, now (since v2) it just sucks! – Alix Axel Apr 30 '10 at 7:56
devPHP....horrible official website....horrible application UI... – SilverNight May 5 '10 at 16:57
show 4 more comments
feedback

From my own experience, I've been extensively using Dreamweaver, Netbeans (at home) and PHPDesigner (at work), and also less often Eclipse PDT, Aptana and PHPEd. This is what I think:

Dreamweaver has some nice features to combine PHP+HTML+CSS but to use PHP widely it's not the best choice.

Netbeans is in my opinion the best one available for free. Robust, user-friendly and with many useful features.

PHPDesigner is the one I must use at work and although it has a lot of features, it's a little buggy, and surprisingly lacks two important features for an IDE: to collapse parts of code, and variable/function highlighting (whenever you click on one all the occurrences within the same document become highlighted). This helps you quickly grasp what is being done throughout the doc with the variable/function.

Eclipse PDT and all the IDE's based on Eclipse, like Aptana, are nice and a very good choice just because they're free, but they are a little buggy too, and the addition of extensions can be sort of a nightmare due to incompatibilities. Although I haven't tried this, Aptana is said to be the best one among the mentioned IDE's if you also want to program javascript.

PHPEd is not free, but it has IMO the best debugging tool.

link|improve this answer
feedback

Here we go- I have started a project on sourceforge, Eclipse-Prado, which is basically eclipse plugin to edit prado .page files. You can use this plugin in Eclipse PHP IDE ( or any eclipse JavaEE IDE). Use it and please give me your suggestions and inputs.

Thanks Anand

link|improve this answer
feedback

I'm not sure why you ditch NetBeans like that. Your reason seems to be

I am not sure debugging will be good in NetBeans, especially as I would prefer to use remote Linux server for this.

My development setup is NetBeans with the XDebug PHP extension. My understanding is that XDebug allows you to debug remotely, and it seems accurate: http://xdebug.org/docs/remote, but I never tested it personnaly.

link|improve this answer
feedback

I'm using dreamweaver to develop client side (HTML5, CSS3 and jQuery) and NetBeans+xdebug to debug ajax applications and it works good. I tried PHPed and nusphere debugger and it works really good too. I prefer PHPed instead NetBeans, is lightweight, you can encode your php scripts for distribution, nusphere has php express too, an extension to execute php scripts encoded with nucoder inside PHPEd. But, i love mac, and i use a mac, it's sad that there's not PHPed mac version, that's why i'm using netbeans.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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