Hello all.
Is there a way to dynamically call a static method while passing the parameters via reference prior to PHP 5.3?
$class::$method($args) only works in PHP 5.3
call_user_func does not pass by reference.
call_user_func_array(array($plugin, $point), array(&$args)) does not actually pass an array by reference
TIA!
edit
I am essentially trying to call a static method with an array argument that is a reference so the data changes survive the method call.