代码如下:
if (defined('CONST_NAME')) {
//do something
}
@H_403_8@
//do something
}
变量检测则是使用isset,注意变量未声明或声明时赋值为NULL,isset均返回FALSE,如:@H_403_8@
代码如下:
if (isset($var_name)) {
//do something
}
@H_403_8@
//do something
}
函数检测用function_exists,注意待检测的函数名也需要使用引号,如:@H_403_8@
代码如下:
if (function_exists('fun_name')) {
fun_name();
}
@H_403_8@
fun_name();
}
先不说多了我们看一个实例@H_403_8@
代码如下:
PHP
/* 判断常量是否存在*/
if (defined('MYCONSTANT')) {
echo MYCONSTANT;
}
//判断变量是否存在
if (isset($myvar)) {
echo "存在变量$myvar.";
}
//判断函数是否存在
if (function_exists('imap_open')) {
echo "存在函数imag_openn";
} else {
echo "函数imag_open不存在n";
}
?>
@H_403_8@
/* 判断常量是否存在*/
if (defined('MYCONSTANT')) {
echo MYCONSTANT;
}
//判断变量是否存在
if (isset($myvar)) {
echo "存在变量$myvar.";
}
//判断函数是否存在
if (function_exists('imap_open')) {
echo "存在函数imag_openn";
} else {
echo "函数imag_open不存在n";
}
?>
function_exists判断函数是否存在@H_403_8@
代码如下:
@H_403_8@
filter_has_var() 函数检查是否存在指定输入类型的变量。
若成功,则返回 true,否则返回 false。@H_403_8@
代码如下:
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@H_403_8@ 原文链接:https://www.f2er.com/php/29239.html