PHP filter_input:当输入为空时如何返回NULL
当输入为空时,如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NULL 应该是
FILTER_NULL_ON_FAILURE
。但这也达不到您想要的效果。为什么需要它为 NULL?您获得字符串 (0) 的原因是因为表单中的帖子字段可用。田野里只是空的。如果您希望它为NULL,则该字段不应存在。
因此,请使用
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.
So go with
strlen()
. Or make sure the field is not there when you don't need it.