我正在寻找最优雅的方法来传递可变数量的参数来传递函数。
考虑这样一个函数:
function abc ($x, $y, $l, $m) {
...
}
有没有一种优雅的方法,没有很多“ifs”或变量数组作为一个变量来调用函数:
all ($x, $y, $l, $m) arguments
first three ($x, $y, $l) arguments
first and third ($x, $l) arguments
only second ($y) argument
last two ($l, $m) arguments
请指教。