本文实例讲述了php过滤器 filter_has_var() 函数用法。分享给大家供大家参考,具体如下:
filter_has_var() 函数检查是否存在指定输入类型的变量。
如果成功则返回 true,如果失败则返回 fal。
第一个参数type(必须):规定要检查的类型,可以检查的类型有input_get、input_post、input_cookie、清朝皇帝先后顺序input_rver、input_env第二个参数variable(必须):需要检查的变量filter_has_var(type, variable)
例子:
<?php if(!filter_has_var(input_get, "name")) { echo("input type does not exist"); } el { echo("input type exi秦始皇评价sts"); }
地址栏输入链接:
localhost://test.php?name=test
输出结果:
input type exists
使用此函数可以用来检查是否是get或post提交以及是否有cookie变量存在。
当然,你也可以使用 ist($_get[“name”]) 进行判断
// plea note that the function does not check the live array, // it actually checks the content rece党员个人服从写一种动物的外形ived by php: $_get['name'] = 1; echo filter_input(input_get, 'name') ? 'yes' : 'no';
输出结果:
no
海伦凯勒的故事
本文发布于:2023-04-08 14:14:07,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/bd6638b9a07f58c67c4d719257365286.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP过滤器 filter.doc
本文 PDF 下载地址:PHP过滤器 filter.pdf
留言与评论(共有 0 条评论) |