如何检查 Smarty 中是否存在变量?

发布于 2024-12-09 14:41:43 字数 287 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(4

未央 2024-12-16 14:41:43

就这样吧!

{if isset($error)}
    {* TODO something *}
{/if}

There you go!

{if isset($error)}
    {* TODO something *}
{/if}
只是偏爱你 2024-12-16 14:41:43

isset() - smarty - php

isset($error)

isset() - smarty - php

isset($error)
乜一 2024-12-16 14:41:43

您还可以使用:

{if $error|default}<h1>{$error}</h1>{/if}

|default”修饰符检查变量是否存在并接受一个参数(默认值:空字符串)

You can also use:

{if $error|default}<h1>{$error}</h1>{/if}

"|default" modifier check if variable exist and accept one param (default: empty string)

嘿咻 2024-12-16 14:41:43

这很短:)
没有警告或错误。

{if $error}

This is short :)
No warnings or errors.

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