I want to universally define the __call() method, so that every class
in my application does the same thing if a non-existant function is
called.
In actionscript I could do this by adding the definition to the
prototype for Object.
Is there any way to do that in php 5? I could make every one of my
classes inherit from like an Object class that I define, but that kind
of sucks.
Comment