Results 1 to 2 of 2

Thread: 5 Tools of PHP Developers

  1. #1
    Join Date
    Nov 2009
    Posts
    76,596

    Default 5 Tools of PHP Developers

    1: A Framework

    The most important tool any developer can have in their tool box these days is a framework. Let’s talk about two different types of frameworks.

    The first type of framework is a Content Management System. These days CMS systems are complex enough to be thought of as specialized frameworks in their own right. You need to know one good enough to get it installed, up and running and extend it to get the job done. If your needs are easily definable and your CMS of choice has extensions available to fit more of the functionality then learning one could pay for itself in only one or two projects.

    PHP has a lot of good CMS projects available and listing them here would simply mean that I would forget one so I’m not going to try. Dig around on Google and you’ll find one.

    The second type of framework that PHP programmers need to have in their toolbox is a more generic programming framework. In the PHP world we have a lot of frameworks from which to choose. Most developers chose one of three or four major frameworks.


    2: A Version Control System

    CVS, SVN, Git, or a host of other options both free and commercial will help you keep your code safe. Whether that’s safe from your development server’s hard drive crashing or safe from you next coding binge where you change something at 2AM that you really shouldn’t have; keeping your code in a version control system will help. Which system you choose will largely depend on how you or your team work. You need to research the options available and work with your team to make choices like central vs. distributed.

    3: A ERD Tool

    If you are doing serious PHP work then chances are good that you are working with a database. At some point your database structure will grow too large to keep in your head, you will need a tool to keep everything straight; that’s where an Entity Relationship Diagram (ERD) tool comes into play. Tools like MySQL Workbench help you visualize your database structure. More expensive tools like ERWin or Embarcadero’s ER/Studio give you more options for importing and exporting models and keeping your database model in sync with your actual database.

    No matter whether working on your personal project or the corporate database, an ERD Tool will help you manage it.


    4: A Debugger

    As with unit testing tools, there are multiple options for you when it comes to debuggers. dbg, Zend_Debug and xdebug all provide professional PHP developers with tools to break down their code and find problems. Debugging tools allow you to step through your code, stop execution and examine the environment at any point. Debuggers are a developer’s best friend and every developer should have one installed on their development server. Bonus points if you’ve also got FireBug installed. Find you a good debugger and invest the time necessary to use it, it will be time well spent.

    5: A Unit Testing Tool

    Whether you prefer PHPUnit or SimpleTest, Unit testing has proven it’s usefulness in the development process. As a professional PHP developer, you should be familiar with the concepts behind Unit Testing and Test Driven Development. You should also be able to identify when unit testing is a good idea and when it’s a bad idea.





    Keywords:5 Tools of PHP Developer ,Framework,important tool, developer , tool box ,framework,Content Management System, CMS systems ,running,extend ,easily definable , CMS ,extensions available, projects,PHP , CMS projects ,PHP programmers , generic programming ,Version Control System,CVS, SVN, Git, commercial , code safe,development server, hard drive , ERD Tool,PHP work, database,Entity Relationship Diagram ,ERD tool ,MySQL Workbench , ERWin ,Embarcadero’s ER,Studio , exporting models,personal project, corporate database,Debugger,testing tools, multiple options ,debuggers,dbg, Zend_Debug , xdebug ,code , Debugging tools , FireBug installed,Unit Testing Tool, PHPUnit ,SimpleTest, Unit testing , Test Driven Development.


  2. #2
    Join Date
    Oct 2011
    Posts
    4

    Default

    thank you lots

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •