PHPDoc:记录具有可变数量参数的函数
记录接受可变数量参数的类方法的推荐方法是什么?
也许是这样的东西?
<?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());
}
}
注意:作为一般规则,我认为应该尽可能避免这种事情。话虽如此,最好仍然记录无法避免的其余少数情况。