PHP5 has a "magic method" __call()that can be defined on any class that is invoked when an undefined method is called -- it is roughly equivalent to Ruby's method_missing or Perl's AUTOLOAD. Is it possible to do something like this in older versions of PHP?
|
|
|
|||
|
|
|
|
This article, Using Method Call Overloading in PHP 4 over on DevShed might help. |
||
|
|
|
|
The most important bit that I was missing was that |
||
|
|
|
|
I recall using it, and a little bit of googling suggests that
as a member function will do the job. |
||||||
|
