I have the array, function my_multiply and the function array_walk
but the value start from 0 and the array is 1
the factor multiple the key and return the value
I think is working like this
$array2 = array(1,2,3);
function my_multiply(&$value,$key,$factor){
$value *=$factor;
echo "| value ".$value." | key ". $key." |factor ".$factor;
}
array_walk($array2,'my_multiply',3);
?>
| value 3 | key 0 |factor 3| value 6 | key 1 |factor 3| value 9 | key 2 |factor 3