<?php class f { function f(&$e){} } function getNew() { $a = func_get_args(); $c = array_shift($a); $r = new ReflectionClass($c); return $r->newInstanceArgs($a); } $e = new stdClass; var_dump(getNew('f', $e));
You have javascript disabled. You will not be able to edit any code.