PHP filter_has_var() 函數(shù)
PHP filter_has_var() 函數(shù)

定義和用法
filter_has_var() 函數(shù)檢查是否存在指定輸入類型的變量。
如果成功則返回 TRUE,如果失敗則返回 FALSE。
語法
filter_has_var(type, variable)
參數(shù) | 描述 |
---|---|
type | 必需。規(guī)定要檢查的類型。 可能的輸入類型:
|
variable | 必需。規(guī)定要檢查的變量。 |
實例
在本實例中,輸入變量 "name" 被發(fā)送到 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

相關(guān)文章
- PHP 教程
- PHP 安裝
- PHP 語法
- PHP 數(shù)組排序
- PHP 函數(shù)
- PHP 文件上傳
- PHP array_combine() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP array_values() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP ksort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP 5 Math 函數(shù)