PHP 使用 str_replace 替换奇怪的模板字符串?

发布于 2024-12-06 08:53:59 字数 251 浏览 0 评论 0原文

不确定这是否可能,但在我的模板上,我在代码中有这样的内容:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看轻我的陪伴 2024-12-13 08:53:59

不,不使用 str_replace
但如果 Title 是行首,请尝试 preg_replace

preg_replace('~^(.*?)<!--firstTitle-->~', '<h2>$1</h2>', $string);

No, not with str_replace
But if Title is start of the line, try preg_replace

preg_replace('~^(.*?)<!--firstTitle-->~', '<h2>$1</h2>', $string);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文