関数を渡すために可変数の引数を渡す最もエレガントな方法を探しています。
そのような関数を考えてみましょう:
function abc ($x, $y, $l, $m) {
...
}
多くの「if」または関数を呼び出すための1つの変数としてパスする変数の配列を使用しないエレガントな方法はありますか:
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
ご意見をお聞かせください。