Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Brandon Savage's Blog:
Exceptional PHP: Introduction to Exceptions
Nov 09, 2009 @ 16:12:52

In a new post to his blog Brandon Savage looks at exception handling in PHP with an introduction to a novice user of PHP:

Exceptions make it easy to interrupt program flow in the event that something goes wrong. They allow you to customize how a program handles errors, and gracefully degrades an application. This week, we will discuss various exception handling techniques, and today we will discuss the basic dos and don'ts for exceptions.

He starts with what exceptions are, how they should be used and a few handy tips that can help you make the most out of this handy PHP5 feature like:

  • Exceptions are not meant to be silenced
  • Use exception codes to differentiate between exceptions
  • Exceptions are meant to be handled
  • Don't use exceptions to manage normal program flow
  • Be sure that your exceptions honor layer abstraction
tagged: exception tutorial introduction

Link:


Trending Topics: