DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
The Latest "Software Integration: The Intersection of APIs, Microservices, and Cloud-Based Systems" Trend Report
Get the report
  1. DZone
  2. Software Design and Architecture
  3. Integration
  4. NetBeans IDE 6.5 Beta: Geared for PHP Development!

NetBeans IDE 6.5 Beta: Geared for PHP Development!

Lloyd Dunn user avatar by
Lloyd Dunn
·
Aug. 13, 08 · Interview
Like (0)
Save
Tweet
Share
26.31K Views

Join the DZone community and get the full member experience.

Join For Free

As web developers increasingly tackle large-scale projects that use PHP together with MySQL, they stand to benefit from an IDE that can efficiently manage their growing code base. Fortunately, the newly released NetBeans IDE 6.5 Beta arrives tailor-made to help PHP developers with their particular coding requirements. (Watch the screencast here.)

With the NetBeans IDE 6.5 Beta, web developers can now enjoy a robust PHP editing environment that includes all the standard features NetBeans users enjoy, such as: code completion, syntax highlighting, marking of occurrences, refactoring, code templates, pop-up documentation, easy code navigation, editor warnings, a task list, as well as a debugger.

Because PHP projects typically connect to MySQL databases, NetBeans engineers have also made a concerted effort to cater to this configuration. Plus, PHP developers wary of the hefty download of a full-featured IDE will be pleased to discover that the NetBeans IDE 6.5 Beta is available as a PHP-only distribution that weighs in at a tight 20MB.

Code Completion

code completion in NetBeans 6.5 beta

The NetBeans IDE's code completion for PHP recognizes classes and functions that are defined in local project files, and offers them up in pop-ups that are invoked with a simple control-space. In addition, code completion is prioritized so that locally-defined functions are shown before other options. NetBeans code completion also parses code comments, and this documentation becomes available when the pop-up is invoked. Entering code in the editor is facilitated through a code template system, where short abbreviations are quickly expanded to commonly used PHP keywords and commands.

Navigator Window

Navigator window in NetBeans 6.5 beta

A navigator window gives a bird's-eye view of the code in the current open document, and finding a particular function to edit becomes a simple task. Clicking on a function name in the navigator window puts the cursor directly in the function. This is a real time-saver for projects that have a large code base. In addition, all occurrences of a given variable in the file can be simultaneously highlighted simply by placing the cursor in a variable name. NetBeans IDE 6.5 Beta also offers the ability to Go To Type, Go To File, and Go To Declaration in its Navigate menu, as well as Find Usages in the Edit menu.

Tasks window in NetBeans 6.5 beta

The editing window in NetBeans IDE responds to potential code problems, such as uninitialized variables, through an automatic system of warnings. A warning icon appears in the left bar of the editor in place of the line number, and with the mouse placed over the problem line the warning is revealed as a tool tip. A tasks window is available which, when invoked, lists all warnings in the project, making it easy to clean up problems. Warnings are removed from the list the instant the code is fixed. The tasks window can also keep track of to-do items that remind the programmer to complete any other unfinished tasks.

PHP Debugger

Another welcome feature in PHP for NetBeans 6.5 is the debugger, which allows developers to watch their code step by step as it executes. This makes debugging a more straightforward task. At any line of the code, the developer can click the left sidebar of the NetBeans editor to set a breakpoint, and also activate a "Watch" on any variable in the code through a right-click.

After setting points of interest, the developer then invokes Debug through a menu or button. The NetBeans IDE opens the project in a browser window, but stops execution at the first breakpoint. The developer can then switch back to the IDE, and can step through the code, watching the values of the variables change as the code executes.

Command-line Debugger

command-line debugger in NetBeans 6.5 beta

There is also another handy way to debug a project. Among the possible project configurations is the ability to run the project in the Output window using a Run/Debug configuration. A "Run as..." attribute is set to "Script" in the Project Properties window. This allows the developer to debug the project using a command line display in the IDE itself, allowing close inspection of the running code before it's rendered as HTML. In total, the developer is offered three options for choosing from the available project configurations: a Toolbar configuration menu; a Set Configuration menu item; or an option that can be set in the Project Properties window.

MySQL Integration

MySQL table editing in NetBeans 6.5 beta

NetBeans engineers have simplified working with MySQL. For example, NetBeans' pervasive Insert Code command provides a Database Table option that creates the code needed to execute a SELECT statement for a specified table, and then displays the results.

Another useful new feature is the ability to edit a MySQL table in place without having to write a MySQL command. Right-clicking on a Table node in the Project window offers a menu of options, including one to View Data. Selecting this will open a tab with all of the node's data laid out as a table. The nice thing is that the individual table cells can be edited with a double-click, which lets the programmer easily change the data as needed.

NetBeans IDE 6.5 Beta also integrates a helpful tool for generating database connections. Routinely, connecting with a MySQL database involves creating a number of lines of connection code. In the IDE's PHP distribution, developers can generate this code automatically by simply placing the cursor and then invoking the Insert Code option. A pop-up appears for selecting the code to insert, and creating the database connection is as simple as selecting an option from a list.

Support for Common Web Technologies

syntax highlighting in NetBeans 6.5 beta

The PHP editor is fully integrated with NetBeans' HTML, JavaScript and CSS editing features, supporting each language's sytax parser, even within a single document. Code completion, syntax highlighting, an d pop-up documentation are able to dynamically switch from context to context, so that working in the typical PHP document, which uses a mix of kinds of code, is made easier.

PHP projects can easily be deployed from within NetBeans IDE 6.5 Beta for testing to local or remote servers via FTP. There is also a setting to make use of an upload script for more complex deployments. In coding PHP projects, the developer can edit, save, switch to a browser, and then simply refresh the page to see the updated content. This pattern will be completely familiar to web page and PHP authors.

Developers involved in collaborative projects will be pleased to hear that all current builds of the NetBeans IDE 6.5 Beta offer integrated support for widely used versioning systems, including CVS, Mercurial, and Subversion.

With the NetBeans IDE for PHP build, NetBeans IDE 6.5 is poised to make a strong showing in the PHP development space, complementing its already strong support for editing JavaScript, and its capable HTML and CSS editor. To top it off, PHP developers using NetBeans IDE have an invaluable resource at their disposal -- an active and growing support community eager to help get them up to speed working in the NetBeans IDE!

Links

NetBeans IDE 6.5 Beta
NetBeans for PHP weblog
NetBeans PHP Editor Screencast

PHP Integrated development environment NetBeans BETA (programming language) code style

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Building a REST API With AWS Gateway and Python
  • Java Concurrency: LockSupport
  • Tackling the Top 5 Kubernetes Debugging Challenges
  • MongoDB Time Series Benchmark and Review

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: