如果字符串中的单词在数组中,则替换它

时间:2016-05-29 19:44:18

标签: php arrays string

我想搜索php字符串中的单词并替换数组中字符串中的任何单词,例如:

$array = array('john', 'peter', 'andrew', 'james', 'mark'); 
$string = "This is a photo from peter which he sent to mark";

现在,我想搜索$string中的所有字词,并用图片替换$array内的任何字词,以便$string现在看起来像这样:

$string = "This is a photo from <img src='peter.jpg'> which he sent to <img src='mark.jpg'>";

请有人知道如何实现这一目标的简单方法吗?

我不认为它是重复的。在那个问题中,只替换了一个字母或单词,但在这种情况下,我需要替换数组中字符串中的任何单词

0 个答案:

没有答案