如何创建我自己的“Smarty”喜欢标签

发布于 2024-12-11 03:27:17 字数 109 浏览 0 评论 0原文

执行以下操作的最简单方法是什么

查看文本块并在任何地方找到 %sometxt% 将其替换为其他内容,

因此基本上任何包含在一组百分号内的文本都类似于 Smarty 的做法?

what is the simplest method to do the following

Look at a block of text and anywhere it finds %sometxt% replace that with something else,

So basically any text that is enclosed within a set of percentage signs similar to how Smarty do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

那一片橙海, 2024-12-18 03:27:17

您要求的最简单的方法

$blockOfText = str_replace('%sometxt%', 'something else', $blockOfText);

您只需将其替换为 str_replace

The simplest method you asked for:

$blockOfText = str_replace('%sometxt%', 'something else', $blockOfText);

You just replace it with str_replace.

双马尾 2024-12-18 03:27:17
$newText = preg_replace('/%.+?%/', 'replacedText', $text);

应该做。 replacedText 必须是您想要替换 %sometxt% 的任何内容。

正则表达式 %.+?% 表示

精细一个 % 符号,后跟任何字符,直到找到另一个 % 符号。

? 使表达式变得“惰性”,因此它将匹配第一次出现的 %

$newText = preg_replace('/%.+?%/', 'replacedText', $text);

Should do it. replacedText needs to be whatever you want to replace %sometxt% with.

The regexp %.+?% means

Fine a % sign, followed by any character until I find another % sign.

The ? makes the expression 'lazy', so it will match up to the first occurrence of %.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文