Answers for "php array_walk example"

PHP
0

php array_walk

$arr = array(1, 2, 3);
// Call function on every item.
// Sign $item as reference to work on original item.
array_walk($arr, function(&$item, $key, $myParam){
  $item *= 2;
}, 'will be in myParam');
// $arr now is [2, 4, 6]
Posted by: Guest on May-11-2021

Browse Popular Code Answers by Language