目录

PHP filter_has_var() 函数

❮ PHP 过滤器参考

示例

检查输入变量"email"是否通过"get"方法发送到PHP页面:

<?php
if (!filter_has_var(INPUT_GET, "email")) {
    echo("Email not found");
} else {
    echo("Email found");
}
?>
亲自试一试 »

定义和用法

filter_has_var() 函数检查指定输入类型的变量是否存在。

该函数检查 PHP 页面接收到的内容,因此变量必须通过查询字符串等发送到页面。


语法

filter_has_var( type, variable)

参数值

Parameter Description
type Required. The input type to check for. Can be one of the following:
  • INPUT_GET
  • INPUT_POST
  • INPUT_COOKIE
  • INPUT_SERVER
  • INPUT_ENV
variable Required. The variable name to check


技术细节

返回值: TRUE 成功,FALSE 失败
PHP 版本: 5.2+

❮ 完整的 PHP 过滤器参考