I have an array like this:
$a = array('aa','bb','cc','dd');
I want to add 'rq' string at the begging of all the elements of array. Is it possible to do it with calling array_map() on this array?
|
You can have it like this:
|
||||
|
Also see this example. |
||||
|