是否有PHP函数可以为我提供传递的参数(func_get_args)以及未传递的任何默认值?
注意:此函数仅返回传递的参数的副本,并不考虑默认(未传递)参数。
答案 0 :(得分:2)
function test($a, $b = 10) {
echo $a, ' ', $b;
}
$rf = new ReflectionFunction('test');
foreach ($rf->getParameters() as $p) {
echo $p->getName(), ' - ', $p->isDefaultValueAvailable() ?
$p->getDefaultValue() : 'none', PHP_EOL;
}
答案 1 :(得分:0)
我创建了一个名为func_get_all_args
的函数,该函数返回与func_get_args
相同的数组,但包含任何缺少的默认值。
function func_get_all_args($func, $func_get_args = array()){
if((is_string($func) && function_exists($func)) || $func instanceof Closure){
$ref = new ReflectionFunction($func);
} else if(is_string($func) && !call_user_func_array('method_exists', explode('::', $func))){
return $func_get_args;
} else {
$ref = new ReflectionMethod($func);
}
foreach ($ref->getParameters() as $key => $param) {
if(!isset($func_get_args[ $key ]) && $param->isDefaultValueAvailable()){
$func_get_args[ $key ] = $param->getDefaultValue();
}
}
return $func_get_args;
}
用法
function my_function(){
$all_args = func_get_all_args(__FUNCTION__, func_get_args());
call_user_func_array(__FUNCTION__, $all_args);
}
public function my_method(){
$all_args = func_get_all_args(__METHOD__, func_get_args());
// or
$all_args = func_get_all_args(array($this, __FUNCTION__), func_get_args());
call_user_func_array(array($this, __FUNCTION__), $all_args);
}
这可能会带来一些改进,例如交流捕捉和投掷错误。