欢迎访问服务器技术网-www.fuwuqijishu.com

PHP filter_has_var() 函数

PHP fuwuqijishu 2年前 (2022-09-04) 19次浏览 0个评论 扫描二维码
文章目录[隐藏]

PHP filter_has_var() 函数


完整的 PHP Filter 参考手册


定义和用法

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

如果成功则返回 TRUE,如果失败则返回 FALSE。

语法

filter_has_var(type, variable)

参数 描述
type 必需。规定要检查的类型。

可能的输入类型:

  • INPUT_GET
  • INPUT_POST
  • INPUT_COOKIE
  • INPUT_SERVER
  • INPUT_ENV
variable 必需。规定要检查的变量。


实例

在本实例中,输入变量 “name” 被发送到 PHP 页面:

<?php
if(!filter_has_var(INPUT_GET, “name”))
{
echo(“Input type does not exist”);
}
else
{
echo(“Input type exists”);
}
?>

代码的输出如下所示:

Input type exists


完整的 PHP Filter 参考手册

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2209.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900