So I i had a class like:
class testClass{
}
and i created an object of this class:
$test = new testClass();
If I were to call a function that didn't exist, like:
$test->someFunction()
Is there anyway that I can catch this function call from, within testClass, and retrieve the function name, without getting a fatal error?
Thanks in advance.


Reply With Quote
Bookmarks