为什么这不起作用以及如何纠正它?

发布于 2024-11-16 04:40:28 字数 390 浏览 4 评论 0原文

在 tpl 文件中,有这样的代码:

{$LANG.globalyouarehere}: {$breadcrumbnav}

现在,如果网址是 https://example.com/1.php,我想要执行此操作。它将添加 welcome{$breadcrumbnav} 之前的 code> 文本。如果是其他的,则不会添加。

以下是我的方法,但是不起作用,如何纠正?

{if $_SERVER['REQUEST_URI']==‘1.php’}welcome {$breadcrumbnav}  {else}{$breadcrumbnav} {/if}

in a tpl file, there are code as this:

{$LANG.globalyouarehere}: {$breadcrumbnav}

now, i want to do if the url is https://example.com/1.php.it will add a welcome text before the {$breadcrumbnav}. if others, it will not add it.

the following is my ways, but it doesn't work and how to correct it?

{if $_SERVER['REQUEST_URI']==‘1.php’}welcome {$breadcrumbnav}  {else}{$breadcrumbnav} {/if}

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

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

发布评论

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

评论(2

蓝天 2024-11-23 04:40:28

我得到了它。把这个{$smarty.server.REQUEST_URI}

i got it. put this {$smarty.server.REQUEST_URI}

儭儭莪哋寶赑 2024-11-23 04:40:28

试试这个

{if $_SERVER['REQUEST_URI']=='/1.php'}欢迎{$breadcrumbnav} {else}{$breadcrumbnav} {/if}

try this

{if $_SERVER['REQUEST_URI']==‘/1.php’}welcome {$breadcrumbnav} {else}{$breadcrumbnav} {/if}

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