我正在使用Smarty模板系统,似乎无法找到有关如何执行此操作的任何文档...
我想检查通过Post发送的参数。如果参数last7
,last30
,last60
或full
不存在,我想显示"This is not working!"
。如果已发布任何参数,我希望显示"This is working"
。
有人知道如何在Smarty模板系统中执行此操作吗?
Smarty文档没有任何关于if / else参数使用的信息......
答案 0 :(得分:1)
自从我使用Smarty以来已经很久了(为什么不使用PHP),但这似乎是正确的:
{if isset($smarty.post.last7, $smarty.post.last30, $smarty.post.last60)}
This is working
{else}
This is not working!
{/if}