PHP - Funzione array_walk ()
Sintassi
array_walk ( $array, $funcname [, $parameter] );
Definizione e utilizzo
Questa funzione restituisce un array contenente tutti i valori di array1 presenti in tutti gli argomenti array2, array3.
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | array(Required) Specifica un array. |
2 | funcname(Required) Il nome della funzione creata dall'utente. |
3 | parameter(Optional) Specifica un parametro per la funzione creata dall'utente. |
Esempio
Prova il seguente esempio:
<?php
function call_back_function($value,$key) {
echo "The key $key has the value $value \n";
}
$input = array("a"=>"green", "b"=>"brown", "c"=>"blue", "red");
array_walk($input,"call_back_function");
?>
Questo produrrà il seguente risultato:
The key a has the value green
The key b has the value brown
The key c has the value blue
The key 0 has the value red