本文实例讲述了PHP过滤器 filter_has_var() 函数用法。分享给大家供大家参考,具体如下:
filter_has_var() 函数检查是否存在指定输入类型的变量。
如果成功则返回 TRUE,如果失败则返回 FALSE。
filter_has_var(type, variable)
例子:
<?php
if(!filter_has_var(INPUT_GET, "name")) {
echo("Input type does not exist");
}
else {
echo("Input type exists");
}
地址栏输入链接:
localhost://test.php?name=test
输出结果:
Input type exists
使用此函数可以用来检查是否是GET或POST提交以及是否有COOKIE变量存在。
当然,你也可以使用 isset($_GET[“name”]) 进行判断
// Please note that the function does not check the live array,
// it actually checks the content received by php:
$_GET['name'] = 1;
echo filter_input(INPUT_GET, 'name') ? 'Yes' : 'No';
输出结果:
NO
更多关于PHP相关内容感兴趣的读者可查看本站专题:《php常用函数与技巧总结》、《php字符串(string)用法总结》、《PHP数组(Array)操作技巧大全》、《PHP数据结构与算法教程》及《php程序设计算法总结》
希望本文所述对大家PHP程序设计有所帮助。