News Feed
Jobs Feed
Sections

Recent Jobs

News Archive
feed this:

Alexander Netkachev's Blog:
PHP coding tip Convert notices and warnings into Exceptions
October 18, 2006 @ 07:19:54

Exceptions and warnings can be tossed out from your code at some odd locations sometimes. There's a few options that you have when they jump out, including pushing them out to an error log or just ignoring them completely. Alexander Netkachev has a different solutions, though - handling them with something already built into PHP, using exception reporting.

This coding tip demonstrates how to deal with PHP core notices and warning (aka recoverable errors) in the exception way, using try/catch statement.

IT's a simple idea, but it can definitely help you keep all of you errors in one place. The sample code he gives shows both a basic idea of the solution and a bit more complex example, providing more detailed messages for different exception types.

0 comments voice your opinion now!
warnings notices exceptions convert handling try catch warnings notices exceptions convert handling try catch



Developer.com:
PHP 5 OOP - Delegation and Custom Exceptions
May 23, 2006 @ 12:06:36

Developer.com has posted the next part in their series covering object oriented programming in PHP5, this time focusing on using delegation to enhance the functionality of their prexisting DBQuery class.

At present our DBQuery object simply mimics (all be it - rather simply) a stored procedure. Once executed a result resource is returned which you must store and pass the MySqlDB object if you wish to use functions such as num_rows() or fetch_row() on the result set. Would it not be nice if the DBQuery object were able to implement the functions which the MySqlDB object implements; that are designed to work on the result of an executed query?

They explain each step of the way, giving you the code you'll need to attach to the current working script, making this delegation possible. They look briefly at tpye hinting and simple exception handling in the script before hitting you with a full-blown Exception handler class to improve your script's reliability.

0 comments voice your opinion now!
php php5 oop delegation custom exceptions part3 tutorial php php5 oop delegation custom exceptions part3 tutorial


SitePoint PHP Blog:
PHP to the Rescue!
May 01, 2006 @ 07:34:45

In his latest post on the SitePoint PHP Blog, Harry Fuecks has linked to a rather long look at error codes and exceptions in PHP, courtesy on Damien Katz.

If you're looking for a thoughtful Saturday read, you won't go far wrong with Error codes or Exceptions? Why is Reliable Software so Hard? by Damien Katz, which is worth it just for the visual interludes.

In fact it's less about error codes / exceptions and more about what you do when something does go wrong-how to you "bail out" of the mess you're in?

There's a few different error handling types that Damien mentions

, including the "Get the Hell Out of Dodge" Error Handling, "Reverse the Flow of Time" Error Handling, and "Plan B" Error Handling as well as some suggestions to help you and your code cope.
0 comments voice your opinion now!
php error handling codes exceptions reliable software tips types php error handling codes exceptions reliable software tips types


DevShed:
Error Handling in PHP - Introducing Exceptions in PHP 5
January 19, 2006 @ 06:53:22

Today, Devshed as posted the second and last part in their "Error Handling in PHP" series - Introducing Exceptions in PHP 5.

Welcome to the last part of the series "Error Handling in PHP." In two parts, this series introduces the basics of error handling in PHP. It demonstrates some of the most common methods for manipulating errors in PHP 4, and explains the implementation of exceptions in PHP 5, particularly in object-oriented environments.

They introduce things like try/catch blocks as well as more complex items like custom exceptions and exception subclassing. They start with the basics, but quickly move into grabbing more detailed error information, working with the various error types, and extending the Exception class with subclasses to make it more flexible...

0 comments voice your opinion now!
php error handling part two introducing exceptions php5 php error handling part two introducing exceptions php5



Community Events









Don't see your event here?
Let us know!


PHP5 cakephp releases zendframework example zend code book database application package framework PEAR release developer job ajax mysql security conference

All content copyright, 2008 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework