Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
関数がありますが、このような多くのパラメーターが含まれています。
function F(param1=false,param2=false,param3=false,param4=false) { ... }
私の質問は、関数を使用するときに配列を作成し、その配列をパラメーターで使用できるかということです。変数の代わりに面積?このような:
$x = array( 'param1' => $param1, . . . ); //then F($x);