PHP checks whether constants, variables, and functions exist.

Source: Internet
Author: User

Copy codeThe Code is as follows:
If (defined ('const _ name ')){
// Do something
}

Isset is used for variable detection. Note that if the variable is not declared or declared, the value is NULL, and isset returns FALSE, for example:

Copy codeThe Code is as follows:
If (isset ($ var_name )){
// Do something
}

Function_exists is used for function detection. You must use quotation marks for the function name to be detected, for example:

Copy codeThe Code is as follows:
If (function_exists ('fun _ name ')){
Fun_name ();
}
 

Let's look at an instance.

Copy codeThe Code is as follows:
<? Php
/* Determine whether a constant exists */
If (defined ('myconstant ')){
Echo MYCONSTANT;
}
// Determine whether a variable exists
If (isset ($ myvar )){
Echo "variable $ myvar .";
}
// Determine whether a function exists
If (function_exists ('imap _ open ')){
Echo "The imag_openn function exists ";
} Else {
Echo "The imag_open function does not exist n ";
}
?>
 

Function_exists

Copy codeThe Code is as follows:
<? Php
If (function_exists ('test _ func ')){
Echo "The test_func function exists ";
} Else {
Echo "The test_func function does not exist ";
}
?>

Filter_has_var Function

The filter_has_var () function checks whether a variable of the specified input type exists.
If yes, true is returned. Otherwise, false is returned.


Copy codeThe Code is as follows:
<? Php
If (! Filter_has_var (INPUT_GET, "name "))
{
Echo ("Input type does not exist ");
}
Else
{
Echo ("Input type exists ");
}
?>

Output is. Input type exists

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.