Hi

can somebody tell me why, if the class member checkFn holds a function name
in the following example, why:

$object->checkFn();

gives "fatal error: Call to undefined function: checkfn()"

but

$f = $object->checkFn;
$f();

Works as expected ?

Many thanks in advance.

Jon