vote up 7 vote down star
2

Some points to consider when answering my question:

  1. I'm new to PHP, coming from a Windows / .NET background
  2. My PHP dev enviroment consists of a Vista x64 / IIS7 with FastCGI / PHP5
  3. I need something light-weight
  4. The following features would be nice
    • Syntax highlighting and colorization
    • Code formating
    • Auto-completion
flag

42 Answers

prev 1 2
vote up 2 vote down

I agree with Sam: Eclipse with PDT is the best for what you want:

  • Syntax highlighting and colorization
  • Code formating
  • Auto-completion

Here's a step-by-step tutorial on how to install it and use those features. I've installed it on my Vista laptop and it worked fine:

Install a PHP Development Environment with Eclipse PDT, Apache 2.2, PHP 5, MySQL 5, and phpMyAdmin Using XAMPP Lite

link|flag
vote up 1 vote down

Before I moved to developing mainly in C# I did quite a bit of PHP development using Notepad++. It's advantages are:

  • Lightweight.
  • Free.
  • Highlighting of other instances of selected text in the same document.
  • Wide variety of available plugins.
  • Regular releases.
  • Find-In-files.
  • Function Completion.
  • Obviously not tied to PHP development.
link|flag
vote up 1 vote down
  • jEdit is a great editor, but you need to install some plugins before it's at its best.

    • It's got great syntax highlighting (esp. with the Editor Scheme plugin)
    • It has excellent remote-file editing support with the FTP plugin
    • It has the easiest-to-use Diff tool I've used
    • It's java-based, and a little heavy on resources, but it's cross-platform.
    • (The plugins I install are: BufferList, CtagsSidekick (along with ctags), Editor Scheme, FTP (remote editing FTW!), JDiff, JTidy, PHPParser, Sessions, SideKick, TaskList, XML and XML Indenter.)
  • I've recently started using Komodo Edit (The free version of Komodo IDE), and I'm really liking it.

    • It's fully cross-platform (because it's based on XUL).
    • It's got good syntax highlighting and error correction.
    • It's got really good code completion & browsing.
    • It's also nice to be able to specify a URL to preview your current file that is not necessarily the path of the file itself - so you can edit a class file and preview it using a test harness very easily.
    • If I was starting out, this would be my recommendation.
  • A lot of people love Eclipse with PDT, but I've never really used it. May be worth checking out, but apparently it's relatively resource-hungry.

link|flag
show 1 more comment
vote up 0 vote down

PHP Designer is pretty solid. I found it to be lighter-weight than Eclipse, has built-in support for TortoiseSVN, PHPDocumenter and some other utilities. It's not free, but it's reasonably priced - $60, I think.

link|flag
vote up 0 vote down

Delphi for PHP is a good PHP editor. It isn't however in the lightweight free category. It has all your features plus a visual WYSIWYG page designer.

Check out the feature list, it is pretty impressive. A lot of screen shots. If you are coming from a rich .NET development background this will really be familiar to you.

link|flag
vote up 0 vote down

I second Notepad++, it's lightweight, fast and works very well. When you enable word completion in the options it's a great support while coding (there are function completion files for several languages available, too). Also take a look at plugins.

Alternatively, use a full-fledged IDE. These are worth a look:

  • Zend Studio for Eclipse
  • Eclipse with PDT
  • Netbeans 6.5
link|flag
vote up 2 vote down

I like VS.PHP because I like to work inside of Visual Studio.

It costs $99, but seems to work fairly well for my purposes.

http://www.jcxsoftware.com/vs.php

link|flag
vote up 0 vote down

I swear by EditPad Pro. It is lightweight with syntax colouring and code formatting, but it does not include auto completion (which personally I don't use anyway). It does have an amazing search function too.

link|flag
vote up 5 vote down

I would highly suggest the Aptana Studio, for your enviroment. More info is here.

And a Review is Here.

link|flag
show 1 more comment
vote up 2 vote down

EditPlus is very lightweight, and meets all of your criteria except for the auto-complete.

link|flag
vote up 0 vote down

Dreamweaver does everything you listed, but isn't very lightweight. I like it because of the ability to have it write a lot of the simple HTML and CSS for me. It also has built in docs on javascript, html, php, and much much more. I would definitely suggest checking it out.

link|flag
show 1 more comment
vote up 15 vote down

While I was working on Windows I always favored Notepad++. Its very lightweight, but also doesn't have a lot of the IDE level features you might be used to from .NET land.

link|flag
show 2 more comments
prev 1 2

Your Answer

Get an OpenID
or

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