PHP 使用 str_replace 替换奇怪的模板字符串?
不确定这是否可能,但在我的模板上,我在代码中有这样的内容:
Title Here<!--firstTitle-->
我想知道是否有一种方法可以使用 str_replace 来输出:
<h2>Title Here</h2>
我可以做一侧,但不能做另一侧??
提前致谢!
Not sure if this is possible, but on my template I have this in the code:
Title Here<!--firstTitle-->
I am wondering if there is a way to use str_replace to output this:
<h2>Title Here</h2>
I can do one side, but not the other??
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,不使用 str_replace
但如果 Title 是行首,请尝试 preg_replace
No, not with str_replace
But if Title is start of the line, try preg_replace