Sintaxis
array_walk_recursive( $array, $funcname [,$parameter])
Definición y uso
La función array_walk_recursive () ejecuta cada elemento de la matriz en una función creada por el usuario. Las claves y los valores de la matriz son parámetros de la función.
Parámetros
No Señor |
Descripción de parámetros |
1 |
array(Required)
Especifica una matriz.
|
2 |
funcname(Required)
El nombre de la función creada por el usuario.
|
3 |
paramter(Optional)
Especifica un parámetro para la función creada por el usuario.
|
Ejemplo
Pruebe el siguiente ejemplo:
<?php
function call_back_function($value,$key) {
echo "The key $key has the value $value \n";
}
$input1 = array("a"=>"green", "b"=>"brown", "c"=>"blue" );
$input2 = array($input1, "d"=>"yellow", "e"=>"black");
array_walk_recursive($input2,"call_back_function");
?>
Esto producirá el siguiente resultado:
The key a has the value green
The key b has the value brown
The key c has the value blue
The key d has the value yellow
The key e has the value black