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

DevShed:
The Isset and Unset Magic Functions in PHP 5
Jun 02, 2009 @ 15:25:50

DevShed continues their series on the "magic functions" in PHP with this new tutorial, a closer look at the __isset and __unset functions.

Overloading properties is only one of the many useful things that can be accomplished with magic functions. It’s also possible to perform additional tasks when working with the "isset()" and "unset()" PHP functions, but in this case by using another set of complementary functions, called "__isset()" and "__unset()" respectively.

In the examples he shows how to use the functions to see if a property has been set or to unset it and remove it from the object (could be helpful when working with private class properties).

tagged: magicfunction unset isset tutorial

Link:


Trending Topics: