I've generally tried to stay away from PHP's magic methods because they seem to obfuscate an object's public interface. That said, they seem to be used more and more, at least, in the code I've read, so I have to ask: is there any consensus on when to use them? Are there any common patterns for using these three magic methods?
|
|
I've seen it used to implement behaviors, as in add extra functions to a class through a pluginable interface. Pseudo-code like so:
It also makes it easier to write mostly similar functions, such as in ORMs. e.g.:
I've mostly seen it used to wrap access to private variables. ORMs are the best example that comes to mind:
|
|||||||
|
|
The main reason is that you do not need to type as much. You could use them for, say, an ORM record and act as implicit setters/getters: using
using
which maps to a simple array:
It is much easier to write such an array to the database than doing a lot of manual calls to collect all needed information. |
||||
|
|
|
It allows you to do things like this:
Then you can populate Also, it allows you to have specific properties which are read-only (ie don't allow them to be modified via Also, you can put code into Lots of possibilities there. There are of course some down-sides of using magic methods. The biggest one for me is the fact that you lose the auto-complete functionality in your IDE. This may or may not matter to you. |
|||
|
|
|
One common pattern is to have a single handle for your clients and proxy the calls to encapsulated objects or singletons based on naming conventions or configurations.
Same principles can be used to drive different backends of the same functionality without having to change the driver. |
|||
|
|
Since magic methods can save you a LOT of coding when it comes to repetitive tasks like defining members, populating them and then retrieving them - instead of doing that boring, long piece of work, you can use mentioned 3 methods to shorten the time to code all that. If needed, I can provide a few examples tho they can be found in various tutorials over the net. I don't know if it's general consensus, but the usual should apply - use where appropriate. If you find yourself to do repetitive task (define member, populate member, get member, call X functions that differ slightly) - magic methods might help you. |
|||||||||||||||
|