在PHP中,是否可以获得编码参数计数?
像这样(伪代码):
function($a=false , $b=true){ //the $a=true... is just parameters, with default values
echo func_num_args();
echo ", ";
echo func_get_coded_params(); //how do i do this in PHP?
}
echo function(1 , 2); // output -> 2, 2
echo function(1, 2, 3, 4, 5, a, b, c); // output -> 8, 2
是否存在可以检索默认编码参数计数的路/虚函数(func_get_coded_params()
)?
在这种情况下,编码参数将是$ a和$ b本身返回2。
如果我做function($a, $b, $c)
它将返回3
答案 0 :(得分:4)
使用ReflectionFunction
并调用getNumberOfParameters
方法。
您可以使用以下方法创建当前函数的实例:
$func = new ReflectionFunction(__FUNCTION__);
使用
获取已定义参数的数量$func->getNumberOfRequiredParameters();
修改强>
用于课程。
$func = new ReflectionMethod(__CLASS__, __FUNCTION__);
答案 1 :(得分:2)
PHP有许多可以使用的有用Reflection
类。
function whatever($a, $b, $c)
{
$reflection = new ReflectionFunction(__FUNCTION__);
echo func_num_args() . ', ' . $reflection->getNumberOfRequiredParameters();
}
whatever(1,2,3,4,5); // Prints 5, 3
答案 2 :(得分:0)
这将满足您的需求:
class x
{
function __construct($a=1,$b=2)
{
$constructor = new ReflectionMethod(__CLASS__,__FUNCTION__);
$params = $func->getNumberOfParameters();
echo func_num_args().",".$params;
}
}
$x = new x(1,2,3,4); //output -> 4,2
请注意,由于您在构造函数中为参数定义了默认值,因此您需要调用的是getNumberOfParameters()
而不是getNumberOfRequiredParameters()
(因为没有必需的参数,它们都具有默认值)