如何向 PHPBB 模板文件添加逻辑?
我们如何在phpBB的模板文件中应用逻辑?
他们在教程中教授的方式不适合我。 我已经
$template->assign_var('POINTER',$pointer);
在 .tpl 文件中
!-- IF POINTER == 1 -->
do this
!-- ELSE -->
do that
!-- ENDIF -->
使用了这个:但它不起作用。
How do we apply logic in template file of phpBB?
The way they have taught in the tutorial doesnt works for me.
I have used this:
$template->assign_var('POINTER',$pointer);
and in the .tpl file
!-- IF POINTER == 1 -->
do this
!-- ELSE -->
do that
!-- ENDIF -->
But it doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的代码中有一些错误:
在模板文件中:
错误:
You have a few errors in your code:
In the template file:
Errors:
<!--
<!--
(you had two forENDIF
)1.) 您使用的是 PHPBB3 还是 2?因为 IF 条件仅存在于版本 3 中。
2.) 您知道代码开头缺少“<”符号吗?
1.) Are you using PHPBB3 or 2? Because the IF-Condtion exists only in Version 3.
2.) You know that the "<"-Sign is missing at the begin of your Code?