Review – NuSphere’s PHPEd

Share this article

Recently, NuSphere released PHPEd as the PHP Development Environment for the enterprise developer. As NuSphere say,

“To keep pace with market demand, development professionals need a cost-effective, customizable application that leverages the strengths of PHP. NuSphere PHPEd is that application.”

I thought I’d take it for a spin…

The Install

My initial impression of PHPEd was “wow”. The installer came complete with all the applications needed to create, test, debug, secure and deploy PHP + MySQL Websites: Apache, PHP, MySQL, Perl, NuSphereMail, MyODBC, MySQL JDBC, CVS, NuSphere security console and the actual PHPEd IDE itself.

The installation program existed completely inside a Web browser window, and it took around 10 minutes to install and configure everything mentioned above. I already had MySQL installed, so the installation program cleverly detected this and skipped it.

Working With PHPEd

Once everything was installed, I fired up PHPEd via the start menu. I was greeted with the PHPEd IDE, which looks like this:

703_ed1

Clicking on the File -> New menu option gave me the choice of eight new document types: HTML file, include file, JavaScript file, Perl file, PHP file, Python file, SQL file, and text file. Because PHPEd is primarily a PHP script editing IDE, I chose to create a new PHP file.

I went about creating a new PHP document to connect to my locally installed copy of MySQL. As with many other IDE’s, my code was colored according to syntax, comments, etc. One great thing I noticed was the built-in syntax suggestion tool. To use it, you simply type the start of a PHP function name, such as “mysql_con” and PHPEd displays its syntax suggestions for the way that you should call the function:

703_ed2

Also, when you’re typing the name of a function to call in your PHP script, but aren’t too sure what its name is, PHPEd will display a list of functions whose first letters are similar to those you’ve typed in so far. They’re displayed in a floating list box that resembles the way Microsoft has implemented its intellisense feature in both Visual Basic and C++:

703_ed3

As you can see in the example above, I’ve created four variables. Each time I pressed the “$” key at the start of the variable name, PHPEd displayed a list of variables currently declared throughout the PHP script I was writing. This is a handy feature and helps minimize incorrect name referencing of variables.

The PHP Manual’s Built In!

PHPEd also includes a built-in copy of the PHP manual. To see a definition and example for any function, simply type that function’s name into your script and then press the F1 function key:

703_ed4

When I create ASP pages, I use Visual Interdev. My favorite feature of Visual Interdev is its unlimited undo command. Much to my surprise, PHPEd also supports unlimited undo commands from the edit menu. This is great when you decide to change some critical aspect of your code, save it, and then decide to revert back to the older code at the last minute.

Another feature that caught my attention was PHPEd’s very intuitive settings dialog. By simply clicking on the Tools -> Settings menu option, I was greeted by a huge number of tabs containing all the options that PHPEd uses to format code, complete words, connect to Apache, etc., contained in this window:

703_ed5

The “Code templates” tab provides code samples for some of PHP’s most popular keywords and functions including “switch”, “for”, “mysql_connect” and “list”. If you find a new function that you know you’ll almost always use, then you can click on the “Add” button to add it to the list of functions with your own code example:

703_ed6

Because I normally create my PHP code with notepad, I wasn’t used to PHPEd automatically closing brackets and braces for me. Actually, I found it quite annoying. Luckily, though, there were “Auto-close quotes” and “Auto-close brackets” options in the settings menu which I simply unchecked.

PHPEd has built-in support for connecting to, viewing and querying MySQL databases. The MySQL tab provides one click login access to databases. Once connected, you use a tree view structure to navigate through databases, tables and users:

703_ed7

To display the schema for a database or table, you simply click on it, and it’ll appear in the main window. There are five buttons that give us information about the currently selected MySQL table: Summary, structure, data, privileges and SQL, which allows you to query the database and view that queries results right there in PHPEd’s main window:

703_ed8

This is a great timesaving feature and works in the same way as Microsoft SQL Server’s Query Analyzer tool. It saves you from having to use the MySQL console application or phpMyAdmin to manipulate your databases all the time.

Although the built-in MySQL support is great, PHPEd does lack support for the several other popular databases that PHP supports including MS SQL Server, Oracle and PostgreSQL. This is a shame really, as PHPEd supports MySQL so well.

Easy JavaScript Creation

As mentioned earlier, you can easily create JavaScripts with PHPEd. If you don’t have much experience with JavaScript, then PHPEd’s “JS” tab might be just the thing for you. It contains a tree view list of every JavaScript function. To add the code for any of these JavaScript functions to your code, you simply double-click on the one you want and PHPEd takes care of the rest:

703_ed9

The last (and most important) feature that I want to talk about is PHPEd’s built-in debugging support. If you’re working with a variable and want to see its current value at any point in your code, you simply highlight it, and PHPEd will show a tool tip with its current value, like this:

703_ed10

Another debugging feature of PHPEd is its code debug-and-display feature. We can pass a snippet of our code to the debugger, which displays the results in PHPEd’s built in browser window. To do this, we simply select the piece of code that we want to debug and then click on the Run -> Run In Debugger menu item, or press the F5 function key.

703_ed11Just like in Visual Basic, we can also set break points, run code up to a certain line, step over, into and out of code, and add variable watch points to our code. All of these options are accessible from the Run menu (pictured at right).

When you’ve created your site and are ready to upload it, PHPEd comes to the rescue with its built-in FTP manager. It’s literally a two-click process to connect to your Web server via FTP: one click to edit your account details, and another to actually connect to your server.

You can also use PHPEd’s built-in FTP manager to open remote files locally. This is a great time saver if you’re constantly changing files on your remote Web server.

PHPEd At A Glance

Pros:

  • Tightly integrated support and functionality for MySQL databases
  • Great built-in debugging and stepping features, which makes debugging your PHP scripts a breeze
  • Auto-complete function name suggestions and function parameter listings
  • Built-in FTP manager for opening remote files quickly and easily
  • Installs and automatically configures Apache, PHP and MySQL

Cons:

  • A tad on the expensive (and ironic) side for an IDE that supports a scripting language released under the GPL
  • When I ran PHPEd on my Windows 2000 machine it crashed 4 times over the 6 hours that I was testing it

Conclusion

703_ed12Who’s it for?

PHPEd is a great IDE for quickly and easily creating PHP scripts that incorporate MySQL data basing functionality. If you’re looking for an IDE that will allow several developers to easily work on one project together, or even a tool just to help you get things done quicker, then PHPEd is definitely for you.

I would recommend it to anyone who has around 3-6 months experience with PHP and MySQL, and is looking for a way to combine the advanced functionality of phpMyAdmin, a slick debugger and a handy IDE into one complete package.

Overall Rating

Overall, I give PHPEd eight stars out of ten.

Pricing

PHPEd comes in two flavors: PHPEd, which retails for USD $299, and PHPEd Advantage, which retails for USD $495.

For more information on PHPEd or to purchase, visit the site.

Frequently Asked Questions about NuSphere’s PhpED

What makes NuSphere’s PhpED different from other PHP editors?

NuSphere’s PhpED is a unique PHP editor that stands out due to its advanced features and functionalities. It offers a robust integrated development environment (IDE) that supports both local and remote debugging. It also provides seamless integration with popular databases like MySQL, Oracle, and MS SQL. Moreover, it supports HTML, CSS, and JavaScript, making it a comprehensive tool for web development.

How does the remote debugging feature of NuSphere’s PhpED work?

The remote debugging feature of NuSphere’s PhpED is one of its standout features. It allows developers to debug scripts that are running on a remote server. This is achieved by setting up a DBG listener on the server and configuring the IDE to connect to it. Once set up, you can step through the code, set breakpoints, and inspect variables just like you would in a local debugging session.

Is NuSphere’s PhpED suitable for beginners?

Yes, NuSphere’s PhpED is suitable for both beginners and experienced developers. It has an intuitive interface that is easy to navigate, and it provides comprehensive documentation and tutorials to help beginners get started. Additionally, it offers advanced features that experienced developers will find useful, such as code folding, syntax highlighting, and code completion.

Can I integrate NuSphere’s PhpED with other tools?

Yes, NuSphere’s PhpED offers seamless integration with a variety of tools. It supports integration with popular version control systems like Git and SVN. It also integrates with databases like MySQL, Oracle, and MS SQL, allowing you to manage your database directly from the IDE.

Does NuSphere’s PhpED support mobile development?

While NuSphere’s PhpED is primarily a PHP IDE, it also supports HTML, CSS, and JavaScript, which are essential for mobile web development. However, it does not provide native support for mobile app development. For developing mobile apps, you might need to use additional tools or platforms.

How does NuSphere’s PhpED handle large projects?

NuSphere’s PhpED is designed to handle large projects efficiently. It has a powerful code editor that supports code folding and syntax highlighting, making it easier to navigate through large codebases. It also provides a project management feature that allows you to organize your files and directories in a structured manner.

What kind of support does NuSphere offer for PhpED users?

NuSphere offers comprehensive support for PhpED users. They provide detailed documentation and tutorials to help users understand the features and functionalities of the IDE. They also have a support forum where users can ask questions and get help from the community.

Is NuSphere’s PhpED a good choice for team projects?

Yes, NuSphere’s PhpED is a great choice for team projects. It supports integration with version control systems like Git and SVN, which are essential for team collaboration. It also provides a project management feature that allows you to organize and manage your project effectively.

Does NuSphere’s PhpED support PHP 7 and later versions?

Yes, NuSphere’s PhpED supports PHP 7 and later versions. It also provides support for the latest PHP frameworks, ensuring that you can use the most up-to-date technologies in your projects.

How does the code completion feature in NuSphere’s PhpED work?

The code completion feature in NuSphere’s PhpED helps to speed up coding by providing suggestions as you type. It supports PHP, HTML, CSS, and JavaScript, and it can suggest variables, functions, classes, and keywords. This feature is context-sensitive, meaning it provides relevant suggestions based on the current coding context.

Mitchell HarperMitchell Harper
View Author

Mitchell is the co-founder and product manager at BigCommerce—SaaS ecommerce software which is used by thousands of businesses to sell online. He can be reached via email at mitch@bigcommerce.com

Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week