|
array_walk配列の全ての要素にユーザー定義の関数を適用する 説明
true array_walk(arrayobject
&$array , callable $callback , mixed $arg = null )
array_walk は パラメータ
戻り値
常に エラー / 例外
PHP 7.1.0 以降では、 変更履歴
例
例1 array_walk の例
上の例の出力は以下となります。 Before ...: d. lemon a. orange b. banana c. apple ... and after: d. fruit: lemon a. fruit: orange b. fruit: banana c. fruit: apple
例2 無名関数を使った、array_walk の例
上の例の出力は以下となります。 0 => a 1 => b 2 => c |