/ Published in: PHP
change something in array recusively
Expand |
Embed | Plain Text
function myFunc($item, $key) { if ($key == 'something') { $item = // do what you want with $item; return $item ; } }
You need to login to post a comment.
