$replaces = array('replace 1', 'replace thing 2', 'third replace');
$string = '{REPLACEME} sfsfsdfsdf {REPLACEME} sdfopjsd {REPLACEME} sdfsdf {REPLACEME}';
用相應的替換替換每個連續的{REPLACEME}
最簡單的方法是什麼?如何用數組替換字符串中的同一個字符串實例?
如果有更多{REPLACEME}
比替換,它不應該觸及額外{REPLACEME}
的。
所以輸出我想用我的例子是:
replace 1 sfsfsdfsdf replace thing 2 sdfopjsd third replace sdfsdf {REPLACEME}
不錯的使用限制參數! – gravelpot 2011-02-01 14:50:20
是啊......我一直在想,爲什麼str_replace()沒有類似的參數... – 2011-02-01 14:51:21