gpt4 book ai didi

php - 如何在php中动态检查函数的参数数量

转载 作者:可可西里 更新时间:2023-10-31 22:06:08 25 4
gpt4 key购买 nike

如何在运行时检查 PHP 中方法或函数的许多参数。

例子

class foo {   function bar ( arg1, arg2 ){    .....   }}

我需要知道是否有办法运行类似的东西

get_func_arg_number ( "foo", "bar" )

结果是

2

最佳答案

您需要使用 reflection这样做。

$method = new ReflectionMethod('foo', 'bar');
$num = $method->getNumberOfParameters();

关于php - 如何在php中动态检查函数的参数数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/346777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com