PHPempty (), isset () and is_null () instance test_php tutorial

Source: Internet
Author: User
PHPempty (), isset () and is_null () instance test. The usage of PHP empty (), isset (), and is_null () functions has been discussed a lot, and many materials may not be clear. I will repeat it again here, but it is not discussed from the usage of empty (), isset (), and is_null () functions related to PHP, and a lot of information may not be clear. I will repeat it again here, but I should remember it more deeply, instead of simply using program examples to speak.

The test type is as follows:

$;

$ B = false;

$ C = '';

$ D = 0;

$ E = null;

$ F = array ();

?>

Empty ()

The first is the var_dump output of empty:

Var_dump (empty ($ ));

Var_dump (empty ($ B ));

Var_dump (empty ($ c ));

Var_dump (empty ($ d ));

Var_dump (empty ($ e ));

Var_dump (empty ($ f ));

?>

Program output:

Bool (true)

Bool (true)

Bool (true)

Bool (true)

Bool (true)

Bool (true)

The code shows that empty () outputs true if the data type is null or false.

Isset ()

Let's take a look at the output of isset:

Var_dump (isset ($ ));

Var_dump (isset ($ B ));

Var_dump (isset ($ c ));

Var_dump (isset ($ d ));

Var_dump (isset ($ e ));

Var_dump (isset ($ f ));

// Output

Bool (false)

Bool (true)

Bool (true)

Bool (true)

Bool (false)

Bool (true)

We can see that isset () can only be used to determine whether it is NULL or not.

Is_null ()

Finally, the output of is_null is as follows:

Var_dump (is_null ($ ));

Var_dump (is_null ($ B ));

Var_dump (is_null ($ c ));

Var_dump (is_null ($ d ));

Var_dump (is_null ($ e ));

Var_dump (is_null ($ f ));

// Output

Bool (true)

Bool (false)

Bool (false)

Bool (false)

Bool (true)

Bool (false)

Is_null.

It can be seen that empty () can be used to determine whether all data types are NULL or false, while is_null is basically the same as isset and can only be used to determine whether it is NULL or undefined.

The usage of empty (), isset (), and is_null () functions in PHP has been discussed a lot, and many materials may not be clear. Repeat it again here, but not from...

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.