动态参数 php定义参数数量可变的函数
php定义参数数量可变的函数 [代码片段(14行)]
<?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 />"; ?>
精彩图集
精彩文章