/ Published in: PHP
Expand |
Embed | Plain Text
function array_add_value_suffix($array, $suffix) { foreach($array as $key => $value) { $array[$key] = $value.$suffix; } return $array; }
You need to login to post a comment.
function array_add_value_suffix($array, $suffix) { foreach($array as $key => $value) { $array[$key] = $value.$suffix; } return $array; }
You need to login to post a comment.