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

DevShed:
Sub Classing Exceptions in PHP 5
Oct 15, 2008 @ 17:06:24

DevShed has start up a new series today with the first part in a four-part series looking at exception handling in PHP5.

If you do any serious programming, whether it's in PHP 5 or some other language, you've needed to know how to handle run time errors and other "exceptional" conditions. You can do this by making your program throw generic exceptions. Or you can unlock the potential of PHP 5 and learn how to create custom exceptions, which is the subject of this four-part series.

In this first part they get you started with exceptions, showing how to throw them and catch them correctly (try/catch). They put it to good use in an example catching exceptions thrown from a MySQL connection and select.

tagged: php5 exception tutorial subclass try catch

Link:


Trending Topics: