PHP filter_has_var() 函数
PHP filter_has_var() 函数
完整的 PHP Filter 参考手册定义和用法
filter_has_var() 函数检查是否存在指定输入类型的变量。
如果成功则返回 TRUE,如果失败则返回 FALSE。
语法
filter_has_var(type, variable)
参数 | 描述 |
---|---|
type | 必需。规定要检查的类型。 可能的输入类型:
|
variable | 必需。规定要检查的变量。 |
实例
在本实例中,输入变量 "name" 被发送到 PHP 页面:
<?php
if(!filter_has_var(INPUT_GET, "name"))
{
echo("Input type does not exist");
}
else
{
echo("Input type exists");
}
?>
if(!filter_has_var(INPUT_GET, "name"))
{
echo("Input type does not exist");
}
else
{
echo("Input type exists");
}
?>
代码的输出如下所示:
Input type exists
完整的 PHP Filter 参考手册
相关文章
- PHP 教程
- PHP 安装
- PHP 语法
- PHP 数组排序
- PHP 函数
- PHP 文件上传
- PHP array_combine() 函数
- PHP array_pop() 函数
- PHP array_replace() 函数
- PHP array_reverse() 函数
- PHP array_uintersect() 函数
- PHP array_uintersect_uassoc() 函数
- PHP array_values() 函数
- PHP array_walk() 函数
- PHP ksort() 函数
- PHP shuffle() 函数
- PHP sizeof() 函数
- PHP uksort() 函数
- PHP 5 Calendar 函数
- PHP 5 Math 函数