Book Image

PHPEclipse: A User Guide

Book Image

PHPEclipse: A User Guide

Overview of this book

The fusion of Eclipse, the leading open source development environment, and PHP is an exciting prospect for web developers. This book makes sure that you are up and running as quickly as possible, ready to take full advantage of PHPEclipse's tuned PHP development tools, without requiring any prior knowledge of Eclipse. You will begin with installing and configuring PHPEclipse, before moving onto a tour of the Eclipse environment, familiarizing you with its main components. As a plug-in to Eclipse, PHPEclipse is able to harness the platform to provide a rich and powerful development experience. For helping you improve the efficiency of your PHP coding, the book details the powerful editing features of PHPEclipse, and shows you how to use it to better organize your application code. You will see how PHPEclipse helps you throughout the development lifecycle, and learn how to use PHPEclipse's debugger to troubleshoot and step through your PHP code as it executes. The book rounds off with coverage of accessing databases and managing source code from within the. For the final step for your application, you will learn how to deploy your site to a production server."
Table of Contents (12 chapters)
11
Index

IDEs in Development Projects

There are many ways to create an application. Plenty of pundits and consultants have become wealthy by creating and pitching system development lifecycle models to companies. Not surprisingly, having many ways of doing something leads to many diverse development models. In each model, steps may be called different things, will have different collaborators, and may even occur in different orders. However, most have these steps in common:

  • Requirements Gathering: What do you want the program to do?
  • System Design: How is the program designed? What is the structure of the program? How does it interact with other systems? How will the program address each identified requirement?
  • Development: Code is written at this stage.
  • Testing: Does the application work? Will the program negatively affect other existing systems?
  • Acceptance: Do your customers actually like the product? Will it fulfill their business needs?
  • Deployment: Pushing the code out to production.

It is not uncommon for each step to use different tools. You may simply use a word processor for the requirements gathering. If you use Unified Modeling Language (UML) for system design, you’ll need a graphical diagramming tool. Traditional IDEs are used in the development stage to write code. An IDE may have a debugger to help with testing, or deployment tools, but this is not always the case. If you use a simple editor like Macromedia HomeSite, you’ll certainly need other tools to test and deploy, and even build if necessary.

An IDE, therefore, is just one tool used in developing an application. As one would expect, use of multiple tools drives up development costs by way of license purchases, training, and integration hassles. Eclipse, however, was built to solve this problem.