Paul M Jones wrote:
Whoever suggested this particular tidbit ...
for ($i = 0; $i < $argsCount; $i++) {
$argsString .= ($comma ? ', ' : '') . "\$args[$i]";
$comma = true;
}
return eval("return new $className($argsString);");
