Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to translate all the keys from the array that occur in this string:

$bar = "It gonna be tornado tomorrow and snow today.";

and replacing it with the value using this array:

 $arr = array(
   "tornado" => "kasırga",
   "snow" => "kar"
);

So the output will be:

$bar = "It gonna be kasırga tomorrow and kar today.";
share|improve this question

3 Answers

up vote 1 down vote accepted

The function you're looking for is called string-translate, written in it's short form as strtrDocs:

$bar = strtr($bar, $arr);

Contrary to the popular belief in the other answers, str_replace is not safe to use as it re-replaces strings which is not what you want.

share|improve this answer
Thank you for this great explanation. This is now stuck on my head :) Thanks to others too. – user1012032 Apr 4 '12 at 16:50
+1 for not using str_replace – Baba Apr 4 '12 at 16:54

You can do that with str_replace function:

$tmp = str_replace(array_keys($arr), array_values($arr), $bar);
share|improve this answer
foreach($arr as $key=>$value) {
    $bar = str_ireplace($key, $value, $bar);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.