HTML 中的大括号
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在查看的是解析代码。 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.