我想搜索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'>";
请有人知道如何实现这一目标的简单方法吗?
我不认为它是重复的。在那个问题中,只替换了一个字母或单词,但在这种情况下,我需要替换数组中字符串中的任何单词