为什么这不起作用以及如何纠正它?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我得到了它。把这个
{$smarty.server.REQUEST_URI}
i got it. put this
{$smarty.server.REQUEST_URI}
试试这个
{if $_SERVER['REQUEST_URI']=='/1.php'}欢迎{$breadcrumbnav} {else}{$breadcrumbnav} {/if}
try this
{if $_SERVER['REQUEST_URI']==‘/1.php’}welcome {$breadcrumbnav} {else}{$breadcrumbnav} {/if}