X
Business

PHPEd 3.0 is essential for PHP developers

PHPEd offers a powerful alternative to other PHP development environments, and it supports a number of languages, including Perl, Python, and JavaScript. Find out if it is the right tool for you.
Written by Vincent Danen, Contributor
If you're in the market for a good PHP-integrated development environment (IDE), you may want to seriously consider NuSphere's PHPEd product. PHPEd is a powerful IDE that was previously available only for Windows users. With the recently released 3.0.0 version, it's now available for Linux as well.

A survey of the market
Only three major PHP IDEs are available: PHPEd, ActiveState's Komodo, and Zend's PHPStudio. Out of the three, PHPEd was the last to get a Linux version, but the wait was well worth it. While each IDE has its own strengths and weaknesses, PHPEd is the most powerful of the pack, and possibly the most feature-rich. The code editor includes support for HTML, Perl, Python, C++, Javascript, and other technologies like Cascaded Style Sheets (CSS) and Active Server Pages (ASP). In this respect, PHPEd is as versatile and powerful as any Web designer's editor, so it's more than just a tool for writing PHP code. Figure A shows the PHPEd interface.

Figure A

PHPEd interface

Like all good IDEs, it uses color-coded syntax and variable highlighting, making code much easier to read. The code editor also allows you to execute scripts and pass parameters to them within the editor, allowing you to see the results as straight HTML or as if you were viewing the script through your browser. PHPEd has some powerful code completion features as well, such as auto-completing and auto-closing tags and suggesting context-sensitive parameters and HTML entities. It can also track, store, and recommend variable names and use them when appropriate.

Another nice feature is the integrated MySQL and PostgreSQL support, which allows you to view MySQL or PostgreSQL tables and to modify or update tables using forms generated with the Database Forms wizard. You can test and execute SQL queries and statements without leaving PHPEd at all.

What about a debugger?
All good IDEs also come with some sort of debugger, and PHPEd is no exception. The integrated code debugger, shown in Figure B, will help track down syntax and logic errors as you're writing the code. Unlike some other debuggers, you do not have to add extra code to your scripts; the code debugger runs with no modification to your code. You can watch variable progression within your scripts and view PHP, HTML, and browser output. It also comes with a listener function, which allows you to debug any script from any browser and automatically launch PHPEd. All in all, the debugger is quite versatile and powerful.

Figure B

PHPEd debugger

Another appealing feature is the integrated Web server. This is what makes the debugger work so well, as it is not dependent upon an external Web server and on various modules or extensions being active in the external server. It also comes with an integrated Web browser and search utility.

Deploying the code
Because most people do not develop code on the same machine that hosts it, PHPEd comes with some remote deployment capabilities, such as the integrated FTP client, which can upload and download files from remote servers, and the integrated WebDAV client, which helps deploy code on WebDAV-enabled servers.

New to the 3.0.0 release is the Performance Profiler, and this is an exciting feature. The profiler will allow you identify parts of your code that need performance improvements by tracking code, run time, and total execution time over one or more hits. Instead of relying on server-side caching or speed improvements, the profiler will help you improve the PHP code itself to be as efficient as possible, which in turn will help you write better code.

Project management
Most IDEs include some sort of project management features that will group files into a single project. Currently, PHPEd is the only IDE that comes with Concurrent Versions System (CVS) support. It lets you check out files from CVS and then commit them back to the CVS repository when you've finished your modifications. The Windows version comes with its own CVS client that lets you log in and out of various CVS repositories. Of course, the standard project management capabilities of grouping files to form a project also exists.

From an interface standpoint, PHPEd is easy to use. The interface is visually appealing and well thought out. You can customize the colors and fonts for each type of supported language, design templates for your code to accelerate development time, and even import other manuals to be available through the help system. That way, you can have manuals such as the PHP and MySQL manuals at your fingertips as you are developing your code.

Cross-platform development
Because 3.0.0 is available for both Linux and Windows, cross-platform development is now a reality. Of course, the Linux version is not as mature as the Windows version yet, and it shows. It has the same design as the Windows version without looking as good or feeling as smooth. As development on PHPEd continues, no doubt the Linux version will become more solid. But at the moment, the Windows version is the better of the two. Fortunately, if you purchase PHPEd, you can use it on both, so until the Linux version improves, you can use it under Windows without paying additional license fees.

A must for any PHP developer
It's obvious that NuSphere was determined to give collaborating developers the tool to do the job together better. With the CVS and WebDAV support, multiple developers can work on the same code at the same time without interference. There are a lot of Web projects written in PHP and available under various open source licenses, so PHPEd is an essential tool for multideveloper applications.

Editorial standards