tags:

views:

1326

answers:

24

Possible Duplicate:
Any good PHP IDE, preferably free or cheap?

I want to know if there's an IDE for PHP like Visual Web Developer for .net? Thanks mates

+7  A: 

Take a look at this question: Any good PHP IDE, preferably free or cheap?

Paul Dixon
I got problems with Netbeans setup
Omar Abid
That question has 41 answers for you to check out!
Paul Dixon
A: 

What about Delphi for PHP 2.0?

Andre Bossard
Thanks will take a look
Omar Abid
A: 

I've been developing in PHP for five year and tried almost every available IDE, the best one is ZEND(http://www.zend.com/) it has a great support for autocompleting, project management, debugger and profiler. It integrates with svn and csv

andy.gurin
+2  A: 

It's not quite like Visual Web Developer, or free, but Zend Studio is one of the better PHP development apps I've used. Haven't tried the newer 6.1 version, but 5.5 was quite good the last time I used it. You could also try something like Webuilder or Homesite, but I've found these to be a little buggy with frequent crashes (though they are cheaper than Zend Studio).

Mun
Add another vote for Zend Studio 5.5, haven't had time to look at the new Eclipse based one yet.
DreamWerx
And another for Zend Studio
mdec
A: 

TextMate on Mac OS X!

Christoph Schiessl
ah I use Windows :)
Omar Abid
TextMate isn't an IDE.
gaoshan88
+2  A: 

try out aptana

Ali
A: 

I like the Eclipse PDT all in one.

"The package includes: WTP (all in one), PDT and a plugin of Zend Debugger." http://www.zend.com/en/community/pdt

Komodo IDE is also fantastic.

adolfojp
A: 

I use VS.PHP, an addon (or standalone package) for Visual Studio.

Nicholas
+2  A: 

I prefer Eclipse with PDT installed. It contains:

  • A library of all PHP functions
  • Integrated WSDL Generator
  • Class Designer
  • UML Diagram support
  • Object/Instance IntelliSense.
  • Resource Manager
Nick Stinemates
+2  A: 

You may also want to check out this question: What are some pros and cons of the various PHP IDEs?

gaoshan88
A: 

Notepad++ is my choice though it has less intellesense and far from WYSIWYG but it consume less resources and has marked nested coding so you could recognize each block easily, for a kind like Ms VWD Eclipse with PDT installed is great and i having problem with PHPdesigner especially in UTF-8 file encoding, and weird it often produced chunk(or whatever it called) in some pages which makes my JSON response error

Ariel
+5  A: 

I just switched to Aptana a few months ago and I really like it.

It's free too. :)

Bob Somers
I love aptana, and the $99 is worth it
dassouki
+1  A: 

I've asked a similar question - hopefully some of the feedback / discussion is useful to you: http://stackoverflow.com/questions/365676/which-ide-is-for-me

barfoon
+1  A: 

Check out NuSphere PhpED. I've been using it for 3 years now and have been impressed. Also included a debugger, both local and server side.

Darryl Hein
A: 

"Delphi for PHP" is a very good IDE for building PHP applications, and it also contains VCL for PHP library that provides visual component model and makes database programming easy. More at http://www.codegear.com/products/delphi/php

pglowack
A: 

I use Aptana for most of my PHP and HTML work. Delphi for PHP left a bad taste in my mouth (I used v1.0). I bought it due to CodeGear's (or rather, Borland's) rep, but found the documentation lacking, and the VCL often "broken".

On the good side, I found the IDE itself stable enough, rarely ever crashes (unlike my VS2008, which crashed a few times) and provides the usual IDE goodness you'd come to expect from Borland. I bought it for the VCL though so that was a deal-breaker.

Darkwoof
+1  A: 

Since no one have still mentioned it, I use NetBeans with the PHP Plugin wich supports debugging via XDebug, code completion and itellisense among other useful features.

amartin
A: 

Intype is like Textmate, but for windows: http://intype.info/home/index.php get a more recent version from the rss feed: http://intype.info/public/releases/unstable.rss

A: 

I'd like to second the call for Eclipse + PDT. Personally, I'm kinda against the whole "IDE debugger" approach to coding -- it can be a crutch, replaceable with good unit testing.

The plugins really make PDT Eclipse for me:
Mylyn for Bugzilla integration
Subclipse for SVN integration
JSEclipse for Javascript editing

Avoid the new PDT 2.0 -- its been very buggy around our office and is probably not ready for prime time.

I've tried a ton of other editors. Here's why I like Eclipse better:

Visual Studio Incredible pain to install, is Windows only, and super expensive. For PHP, VS doesn't really give you much over what you get with Eclipse IMO. Besides, any serious PHP dev should be building and testing code in an environment similar to production (*nix). Plus, it's very expensive. Eclipse is free, portable.

Plain-Text Editors Doesn't tell you when you have basic syntax errors. No code completion which saves bugs, time, and money.

Aptana I couldn't get this one to work flawlessly, and it seems to slow down Eclipse without much benefit. I don't require a visual HTML designer nor a debugger, so I Aptana doesn't really give me anything new.

thesmart
A: 

Notepad++ fits great to me =)

DFectuoso
+1  A: 

Hi.

Check http://www.codelobster.com It is waht you need exactly (with Microfost style)

Regards, Stas.

A: 

I pretty much use and love Netbeans, it's auto completition and many other small features make it worth the try,

Daniel S
+1  A: 

What I find most useful when programming in PHP is not really the IDE itself, more its integration to my deployment environment. I use Linux and I exclusively use Gedit (Gnome's Text Editor) due to how easy it is to work with remote files on the remote server through SSHFS or FTP.

So I strongly recommend getting a virtual file-system environment if you're working with PHP webpages. There is nothing more annoying than having to manually move the files across after modifying.

On Windows, Dreamweaver's code editor has this functionality, on Linux (or other *nix variants) can use the gnome virtual file-system or FUSE.

However if you're strictly focused on IDE, I recommend Bluefish.

Andrioid
A: 

I use NetBeans for PHP and like it very much.

KahWee Teng