我们如何在php中添加和替换标签

时间:2014-03-13 15:47:53

标签: php

我想在我的字符串中插入标签。可以在以后更换。例如。

$msg = "This message was sent [tag replaced later] at []";

有没有办法做到这一点。感谢。

1 个答案:

答案 0 :(得分:2)

使用str_replace ..

$tags = array(
 '[a_tag]',
 '[another_tag]'
);
$replacements = array(
  'replace a tag',
  'replace another tag'
);

$string = 'I want to [a_tag] and [another_tag]';
$string = str_replace($tags, $replacements,$string);

echo $string;