HTML 中的大括号

发布于 2024-11-13 03:35:05 字数 154 浏览 4 评论 0原文

我在 HTML 代码中看到大括号用于将逻辑(PHP)与视图(HTML)分开,但我无法理解它..

例如在 phpBB 中:

<h3>{L_BIRTHDAYS}</h3>

任何帮助将不胜感激

I see curly braces in HTML code to be used to separate the logic (PHP) from the view (HTML) but I can't understand it..

for example in phpBB:

<h3>{L_BIRTHDAYS}</h3>

any help will be appreciated

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

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

发布评论

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

评论(1

舞袖。长 2024-11-20 03:35:05

您正在查看的是解析代码。 php 解析器将使用 html,当遇到模式时,在本例中为 {},它将在其属性包中查找,并用值替换 {} 内的变量名称。

您可以通过谷歌搜索来了解有关此类内容的更多信息渲染引擎。

What you are looking at is parsing code. the php parser will consume the html and when it comes across a pattern, in this case {} it will look in its property bag and substitute the values for the variable names inside the {}

You can read more about this sort of thing by googling rendering engines.

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