用于记录接受可变数量参数的类方法的推荐方法是什么?
原文链接:https://www.f2er.com/php/139347.html也许这样吗?
@H_502_3@<?PHP class Foo { /** * Calculates the sum of all the arguments. * * @param mixed [$arg1,$arg2,...] * * @return float the calculated sum */ public static function sum() { return array_sum(func_get_args()); } }注意:作为一般规则,我想像应该尽可能地避免这种事情.话虽如此,仍然记录剩下的几个不能避免的情况是很好的.