检查 PHP 中的 null 和缺失查询字符串参数
我希望能够区分设置为 null 的现有查询字符串参数和丢失的参数。所以问题的部分是:
- 如何检查查询字符串中是否存在参数存在 在查询
- 字符串中传递空值的既定方法是什么? (例如 param=null 或 param=(nothing) )
谢谢
I want to be able to distinguish between existing query string parameters set to null, and missing parameters. So the parts of the question are:
- How do I check if a parameter exists in the query string
- What's the established method for passing a null value in a query string? (e.g. param=null or param=(nothing) )
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用
isset()
和empty()
Use
isset()
andempty()
或者使用
array_key_exists
:我'我从来没有热衷于将空值传递到服务器的“约定” - 例如,我习惯于测试变量是否存在,然后修剪它们并测试是否为空。
Or use
array_key_exists
:I've never been keen on 'conventions' for passing empty values to the server - I'm used to testing for the presence of variables, and then trimming them and testing for emptiness, for example.
除非在运行时明确设置,否则存储在
$_GET
和$_POST
中的值只能是字符串或数组。如果您的查询字符串为query=string
,则值为"string"
;如果您改用:query=null
,则值为"string"
代码>“空”。请注意,它是一个字符串。如果您发送:
query=
,则该值将为""
或空字符串。请注意isset
和空
。如果值不为 null,则isset
将为 true;而当值计算结果为false
时,empty
将为 true。因此,""
对于两者isset
和empty
都为 true。如果您只想检查查询字符串参数是否设置为
"null"
字符串值,则只需检查$_GET['query']=='null' (您可能需要在检查之前调整字符的大小写)
Values stored in
$_GET
and$_POST
can only be strings or arrays, unless explicitly set at run-time. If you have a query string ofquery=string
the value is"string"
if you instead use:query=null
the value will be"null"
. Note that it is therefor a string.If you send:
query=
, the value will be""
or the empty string. Take note of the differences betweenisset
andempty
.isset
will be true if the value is not null, whereasempty
will be true when the value evaluates tofalse
. Therefor""
will be true for bothisset
andempty
.If you just want to check if a query string parameter was set to the string value of
"null"
, you can simply check$_GET['query']=='null'
(you may want to adjust the case of the characters before the check)使用一个 if 语句而不是两个:
With one if statement instead of two: