使用 tpl 在 php 模板中使用 if 语句
我如何解析 {if game > 4}{somecontent}{/if}
来自使用 PHP 的模板。
How can i parse {if game > 4}{somecontent}{/if}
from a template using PHP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用普通的旧 PHP 有什么问题?它更快而且更简单。
如果您真的坚持,这里是一个开始(未经测试):
这非常简单,当您想要使用嵌套语句时,它会变得非常棘手。
What's wrong with using plain old PHP? It's much faster and a whole lot simpler.
If you really insist, here's a start (untested):
This is pretty simple, it get's really hairy when you want to work with nested statements.
您可以使用 smarty 模板引擎解析该语法。
http://www.smarty.net/crash_course
You can parse that syntax using smarty template engine.
http://www.smarty.net/crash_course