php – 获取类函数的参数数量

前端之家收集整理的这篇文章主要介绍了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

猜你在找的PHP相关文章