时间:2021-07-01 10:21:17 帮助过:22人阅读
本文实例讲述了php定义参数数量可变的函数用法。分享给大家供大家参考。具体分析如下:
php中的的函数参数可以不固定,甚至不用定义参数,在函数内部使用func_get_args()函数获得参数列表,调用时可以为函数指定任意参数,非常方便
<?php function addanything (){ $total = 0; $args = func_get_args (); for ($i = 0; $i < count ($args); $i++){ if (is_int ($args[$i])){ $total += $args[$i]; } } return $total; } echo addanything (1,5,7,8,11) . "<br />"; ?>
相关推荐:
PHP 函数注意
PHP页面间参数传递的四种方法详解 php 函数 php php获取url参
php 函数使用方法与函数定义方法_PHP教程
以上就是php实现可变传参数量的函数的详细内容,更多请关注Gxl网其它相关文章!