hi all.
i want to call a class' method statically using "::". but the name of the class is dynamically changed, so i'd like to use a variable als the class' name:
$className = "myClass";
$className::myFunction();
but this ends in a PHP error. 🙁 is there a way to fix this?
thank you very much.
Josh