so I have to get function result in array to replace it.
how to do something like this?
Code: Select all
function function_result($function)
{
$f = call_user_func($function);
return $f;
}Thanks.
Moderator: General Moderators
Code: Select all
function function_result($function)
{
$f = call_user_func($function);
return $f;
}