如何向 PHPBB 模板文件添加逻辑?

发布于 2024-12-19 14:26:54 字数 277 浏览 3 评论 0原文

我们如何在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 技术交流群。

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

发布评论

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

评论(2

﹏雨一样淡蓝的深情 2024-12-26 14:26:55

您的代码中有一些错误:

// There wasn't anything wrong with the PHP code
$pointer = 1;
$template->assign_var('POINTER', $pointer);

在模板文件中:

<!-- IF POINTER == 1 -->
    <div>Pointer is 1</div>  
<!-- ELSE -->
    <div>Pointer is not 1</div>  
<!-- ENDIF -->

错误:

  1. HTML 注释(和 phpBB 指令块)以
  2. 后面只有一个空格

You have a few errors in your code:

// There wasn't anything wrong with the PHP code
$pointer = 1;
$template->assign_var('POINTER', $pointer);

In the template file:

<!-- IF POINTER == 1 -->
    <div>Pointer is 1</div>  
<!-- ELSE -->
    <div>Pointer is not 1</div>  
<!-- ENDIF -->

Errors:

  1. HTML comments (and phpBB instruction blocks) start with <!--
  2. There's only one space after <!-- (you had two for ENDIF)
沧桑㈠ 2024-12-26 14:26:54

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?

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