PHP object overloading is explained here.
Basically it allows you to define some custom actions when an inaccessible object property or method is accessed.
What are some practical uses for this feature?
|
|
|
|
|
|
|
Usually, those methods are useful when you are communicating with a 3rd party API or when the method/members structure is unclear. Let's say you are writing a generic XML-RPC wrapper. Since you don't know the methods available to you before you download the WDL file, it makes sense to use Overloading. Then, instead of writing the following:
You can use:
which is a more natural syntax. You can also use member overloading in the same way as method overloading for variable objects. Just one thing you want to watch for: limit its use only to variable-structure objects or use it only for syntactical shortcuts to getters and setters. It makes sense to keep getters and setters in your class to seperate business logic in multiple methods, but there is nothing wrong in using it as a shortcut:
That way you can continue using your getters and setters to validate and set your data, and still use the syntactic shortcuts as such:
|
|||
|
|
|
|
Properties (like that in Python or C#). For example when you use something like this in Nette, you create some class, which shows some property as public:
You can access this property natural way –
And still you use |
||
|
|
|
|
I use __get and __set to link objects together e.g.
This (usually) calls some SQL linking users.id = profile.user_id. |
||
|
|
|
|
One way, which is quite a bit fancier, that I've used it is to create a Linq like Object Relational Management (ORM) system. Where you can then load up a database table structure and manipulated the data (from the database table) as if it were just an object. i.e.
which translates to the following SQL:
The The result can be used like:
The point is that the word " |
||
|
|
|
|
This feature is actually what object oriented programming is all about, in the mind of its inventor Alan Kay: Objects sending each other messages, and potentially reacting to any kind of message. Methods fixed at compile time are a limited (but also more efficient) implementation of this concept. That's where Kay's famous-quote "I invented the term object oriented, and I can tell you that C++ wasn't what I had in mind." comes from. Basically, allowing objects to react to method calls without having a corresponding method fixed at compile time implements this original, broader definition of object orientation. Most modern "dynamic" languages support it in one form or another. As for what it's good for: take a look at Groovy's Builders for a good example. Basically, it allows very compact low-redundancy syntax by turning method names themselves into data. |
|||
|
|
|
|
Message forwarding for when you have composed or aggregated objects where polymorphism isn't an option (say, you're using a library class you can't control).
|
||
|
|
|
|
You could use it for cases when a class has complex rules for isset and unset. For example, a class containing a variable $a could be an array of objects or other resources, and when unset, they have to do perform some other functionalities. Though I am not sure why they allow the adding of a new property and retrieving of a non-private property, but you could use it to change the internal state of an object by calling other code depending on the name of the property/member variable being set. In some cases, this resembles operator overloading in C++ |
||
|
|
|
|
Another method that Andrew didn't mention (or hasn't mentioned at the time of writing) is for getting rid of getters and setters. Instead of having to declare each setter and getter like this:
You can instead just do
The second method is more natural. Magic Methods basically further the thought of Object Oriented programming, and the idea that how you implement a job should not matter to the outside world. Through Magic Methods, it allows you to store your variables however you want, and just let other classes set them in a natural way. Example: I could store all my user's account preferences in a single array that would make it really easy to iterate through to push it all up to the session. If I didn't use a Magic Method for this, I would either have to make a bunch of sets or gets, which means writing more code, or allow direct access to the array, which reveals the implementation, so I can't go and change it later. Instead, using Magic Methods, I just have them set the variable regularly, and I deal with it internally. |
||||||
|