不确定这是否可行,但在我的模板中,我在代码中有这个:
Title Here<!--firstTitle-->
我想知道是否有办法使用 str_replace 输出:
<h2>Title Here</h2>
我可以做一方,但不能做另一方?
提前致谢!
答案 0 :(得分:3)
不,不是str_replace 但如果Title是该行的开头,请尝试preg_replace
preg_replace('~^(.*?)<!--firstTitle-->~', '<h2>$1</h2>', $string);