Is it possible to use array_map in conjunction with str_replace without calling another function to do the str_replace?
For example:
array_map(str_replace(' ', '-', XXXXX), $myArr);
|
Is it possible to use For example:
| ||||
|
feedback
|
|
There is no need for array_map. From the docs: "If subject is an array, then the search and replace is performed with every entry of subject, and the return value is an array as well." | |||
|
feedback
|
|
No, it's not possible. Though, if you are using PHP 5.3, you can do something like this:
Output:
| |||||
feedback
|
|
Sure it's possible, you just have to give
But for the particular example in the question, as chiborg said, there is no need.
| |||
|
feedback
|
|
You want to do:
? This will return original array with string elements with ' ' changed into '-'. EDIT: As binaryLV wrote in answer, it'll work on PHP >= 5.3, and what's more chiborg's answer pointing out documantation about str_replace is even better :) | |||||||||||
feedback
|
str_replace()to an array, or map the result of replacing something as a function name, to the array? – BoltClock♦ Jun 3 '11 at 11:36