Hi,
is it possible to not also have normal variable functions, but also call class functions ?
like:
$func = "CTest::Hello";
$func("this is a test");
or:
$func = "MyClass->Hello";
$func("jojo");
doesn't seem to work with php4.2.1 but
this would really be usefull for example for callback stuff used by sessions, error tracking etc I think.