前端之家收集整理的这篇文章主要介绍了
php – 获取类函数的参数数量,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法检测类中
函数的参数
数量?
我想做的是以下内容.
$class = 'foo';
$path = 'path/to/file';
if ( ! file_exists($path)) {
die();
}
require($path);
if ( ! class_exists($class)) {
die();
}
$c = new class;
if (num_function_args($class,$function) == count($url_segments)) {
$c->$function($one,$two,$three);
}
这可能吗?
使用反射,但这实际上是
代码中的开销;并且
方法可以具有任意
数量的参数,而不在
方法定义中明确定义它们.
$classMethod = new ReflectionMethod($class,$method);
$argumentCount = count($classMethod->getParameters());
原文链接:https://www.f2er.com/php/132984.html