有没有办法用数组中的不同值替换字符串中的相同针?
像那样:
$string = ">>>?<<<>>>?<<<>>>?<<<"; // replacing the three occourances of "?"
// values of array
echo str_multiple_replace($string, array("Hello", "World", "!"));
输出:
">>>Hallo<<<>>>World<<<>>>!<<<"
函数 str_multiple_replace 怎么能把三个问号替换成数组的内容。
编辑:让内容不影响替换,例如,如果有“?” 在数组中,它不应该被替换。