文档:http ://www.smarty.net/docsv2/en/language.modifier.replace.tpl
我不想替换单个值,而是想更改多个值。在文档中它说 str_replace 与 php 的 str_replace 相同。那么我将如何明智地执行以下智能操作?
$letters = array('a', 'p');
$fruit = array('apple', 'pear');
$text = 'a p';
$output = str_replace($letters, $fruit, $text);