私はこのような配列を持っています
array('item1', 'item2', 'item3');
各アイテムを個別に関数に渡す方法を知っている人はいますか?
例えば:
hello_world('item1', 'item2', 'item3');
私はこのような配列を持っています
array('item1', 'item2', 'item3');
各アイテムを個別に関数に渡す方法を知っている人はいますか?
例えば:
hello_world('item1', 'item2', 'item3');
hello_world($array[0], $array[1], $array[2])
また
call_user_func_array('hello_world', $array)
http://www.php.net/manual/en/function.call-user-func-array.php
call_user_func_array('func',$myArgs);
この関数はhttp://www.php.net/manual/es/function.array-map.phparray_map
に役立ちます