如何检查 Smarty 中是否存在变量?
我正在使用 Smarty 模板引擎。
我正在做一个简单的登录页面。我设置了一个名为 error 的变量,如果存在一些问题,则会显示一条消息,但如果没有,我会得到:
Notice: Undefined index: error
如何检查此变量是否存在?
我只会:
{if $error}<h1>{$error}</h1>{/if}
谢谢
I'm using Smarty template engine.
I'm doing a simple login page. I set a variabile named error with a message if there are some problems, but IF NOT I get:
Notice: Undefined index: error
How could I check if this variable exists?
I only do:
{if $error}<h1>{$error}</h1>{/if}
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
就这样吧!
There you go!
isset() - smarty - php
isset() - smarty - php
您还可以使用:
“|default”修饰符检查变量是否存在并接受一个参数(默认值:空字符串)
You can also use:
"|default" modifier check if variable exist and accept one param (default: empty string)
这很短:)
没有警告或错误。
This is short :)
No warnings or errors.