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

DevShed:
Overloading and Object-Oriented Programming with PHP 5
Oct 12, 2006 @ 21:03:13

Continuing on with their series pulling from the great book from George Schlossnagle, "Advanced PHP Programming", DevShed has posted this new tutorial looking at the use of overloading with object oriented programming in your PHP 5 scripting expeditions.

Last week, we discussed design patterns and polymorphism. This week, we examine overloading and more. Let's bring together some of the techniques developed so far in this chapter and use overloading to provide a more OO-style interface to the result set. Having all the results in a single object may be a familiar paradigm to programmers who are used to using Java's JDBC database connectivity layer.

The first page shows (mostly in code) how to grab the information from the database and pull it all into the single, tidy result set. They dump this new data packet into the hands of the SPL and iterate through it, pulling out the key/value pairs along the way.

Finally, they look at two of the special functions PHP has to make life a little easier when working with objects - __call and __autoload. Both provide some of that great "automagical" functionality that makes life better.

tagged: object oriented book excerpt advanced overloading php5 object oriented book excerpt advanced overloading php5

Link:


Trending Topics: