我需要读取一个字符串来查找变量(标签)并将其替换为存储的值。我使用 %(百分比)来识别标签。输入应该接受一些标签,如 %color% 和 %animal%,所以使用 PHP 我需要插入真正的字符串......用代码更好地解释:
// We have some strings stored
$color = 'white';
$animal = 'cat';
用户应该在文本区域中使用 %color%、%animal% 或任何内容来显示他想要的变量。
// The user text was stored by the $text
$text = "The quick %color% fox jumps over the lazy %animal%.";
$text 的 %color% 和 %animal% 应替换为 $color 和 $animal 值。但是,我该怎么做呢?最终输出应该是
<p>The quick white fox jumps over the lazy cat.</p>
WordPress 允许用户在“永久链接”选项中执行此操作,因此用户可以设置,例如,以下结构:
http://localhost/site/%category%/%postname%/