php,call_user_func_array这个函数在什么情况下用?当调用某个函数时,直...

发布网友 发布时间:2024-10-24 11:29

我来回答

2个回答

热心网友 时间:2024-10-27 11:23

当需要动态调用函数时,如果用eval会很麻烦,所以用这个

热心网友 时间:2024-10-27 11:26

function debug($var, $val)
{
echo "***DEBUGGING\nVARIABLE: $var\nVALUE:";
if (is_array($val) || is_object($val) || is_resource($val)) {
print_r($val);
} else {
echo "\n$val\n";
}
echo "***\n";
}

$c = mysql_connect();
$host = $_SERVER["SERVER_NAME"];

call_user_func_array('debug', array("host", $host));
call_user_func_array('debug', array("c", $c));
call_user_func_array('debug', array("_POST", $_POST));

看列子你就知道了
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com