欢迎来到之路教程(on itroad-com)

函数 func_num_args() 示例

<?php
function count_param()
{
    $count_args = func_num_args();
    echo "参数的数量: $count_args\n";
}

count_param(10, 20);  // 输出 参数的数量: 2

?>
如何统计PHP函数中传递的参数数量?

借助 func_num_args()函数,我们可以计算传入 PHP 函数的参数数量。

日期:2020-09-17 00:10:25 来源:oir作者:oir