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);

link|improve this question

1  
What are you trying to do? Map 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
Why don't you just try it? :) – Jon Skarpeteig Jun 3 '11 at 11:38
each element of the array to have str_replace – Lizard Jun 3 '11 at 11:38
feedback

4 Answers

up vote 9 down vote accepted

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."

link|improve this answer
Perfect answer! +1 – binaryLV Jun 3 '11 at 11:51
feedback

No, it's not possible. Though, if you are using PHP 5.3, you can do something like this:

$data = array('foo bar baz');
$data = array_map(function($value) { return str_replace('bar', 'xxx', $value); }, $data);
print_r($data);

Output:

Array
(
    [0] => foo xxx baz
)
link|improve this answer
Oops.. never say never :) – mkilmanas Jun 3 '11 at 12:01
@mkilmanas, what did you mean? And what was the reason for downvoting (if it was you)? – binaryLV Jun 3 '11 at 13:03
feedback

Sure it's possible, you just have to give array_map() the correct input for the callback function.

array_map(
    'str_replace',            // callback function (str_replace)
    array_fill(0, $num, ' '), // first argument    ($search)
    array_fill(0, $num, '-'), // second argument   ($replace)
    $myArr                    // third argument    ($subject)
);

But for the particular example in the question, as chiborg said, there is no need. str_replace() will happily work on an array of strings.

str_replace(' ', '-', $myArr);
link|improve this answer
feedback

You want to do:

array_map(fuction($str) { return str_replace(' ', '-', $str); }, $myArr);

? 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 :)

link|improve this answer
However, this only works with PHP >= 5.3 – chiborg Jun 3 '11 at 11:45
Indeed, in older versions one can define function make_my_str_replace ($str) { return str_replace(' ', '-', $str); } and use array_map as follows: array_map(make_my_str_replace, $myArr);, however I wouldn't do that (I mean using array_map in PHP < 5.3 at all) because it's adding another function to global namespace... – Xaerxess Jun 3 '11 at 11:49
Xaerxess, that (solution for older PHP) is something that author wants to avoid. – binaryLV Jun 3 '11 at 11:51
@binaryLV: agree, but chiborg's anwer is the best :) – Xaerxess Jun 3 '11 at 11:54
sure. Sometimes it is worth reading manual even if one thinks that he knows how exactly something works. – binaryLV Jun 3 '11 at 11:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.