If I call $object->showSomething() and the showSomething method doesn\'t exist I get a fata error. That\'s OK.
$object->showSomething()
showSomething
But I have a show()
show()
Not necessarily just the show.... methods, but any method, yes, use __call. Check for the method asked in the function itself.
show....