PHP filter_input:当输入为空时如何返回NULL

发布于 2024-10-26 13:50:57 字数 259 浏览 2 评论 0原文

当输入为空时,如何使用 filter_input 返回 NULL?

$title = filter_input(INPUT_POST, 'title');
var_dump($title);

它返回了,

string '' (length=0)

但我想要,

null

谢谢。

How can I return NULL with filter_input when the input is empty?

$title = filter_input(INPUT_POST, 'title');
var_dump($title);

it returns,

string '' (length=0)

but I want,

null

Thanks.

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

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

发布评论

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

评论(1

踏雪无痕 2024-11-02 13:50:57

NULL 应该是 FILTER_NULL_ON_FAILURE。但这也达不到您想要的效果。为什么需要它为 NULL?

您获得字符串 (0) 的原因是因为表单中的帖子字段可用。田野里只是空的。如果您希望它为NULL,则该字段不应存在。

$foo = filter_input(INPUT_POST, 'foo', FILTER_SANITIZE_STRING, array('options' => array('default' => NULL)));
var_dump($foo);

因此,请使用strlen()。或者确保当您不需要该字段时该字段不存在。

The NULL should have been FILTER_NULL_ON_FAILURE. But that doesn't do what you want either. Why do you need it to be NULL?

The reason you are getting string (0) is because the post field is available in the form. The field is just empty. If you want it to be NULL the field should not be there.

$foo = filter_input(INPUT_POST, 'foo', FILTER_SANITIZE_STRING, array('options' => array('default' => NULL)));
var_dump($foo);

So go with strlen(). Or make sure the field is not there when you don't need it.

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