Practical application experience of PHP4 (6)

Source: Internet
Author: User
Now you understand that PHP allows you to nest conditional statements. However, if you look at the example to demonstrate this concept, you will agree that it is both complicated and terrible. -------------------------------------------------------------------------------- & Lt ;? If Now you understand that PHP allows you to nest conditional statements. However, if you look at the example to demonstrate this concept, you will agree that it is both complicated and terrible.


--------------------------------------------------------------------------------
<?

If ($ day = "Thursday ")
{
If ($ time = "12 ")
{
If ($ place = "Italy ")
{
$ Lunch = "pasta ";
}
}
}

?>
--------------------------------------------------------------------------------
Fortunately, in addition to the comparison operators that we can use without any restrictions, PHP also provides some logical operators that allow you to aggregate condition statement descriptions. The following table clearly shows these:


Assume that $ delta = 12 and $ omega = 9

Operator
Meaning
Example
Result

&&
AND
$ Delta = $ gamma & $ delta> $ omega
True

$ Delta & $ omega <$ omega
False

|
OR
$ Delta = $ gamma | $ delta <$ omega
True

$ Delta> $ gamma | $ delta <$ omega
False

!
NOT
! $ Delta
False

<=
Less than or equal
$ Delta <= $ omega
False


Well, we can use logical operators to rewrite the code in the above example. do you think the following statements are simpler?

--------------------------------------------------------------------------------
<?

If ($ day = "Thursday" & $ time = "12" & $ place = "Italy ")
{
$ Lunch = "pasta ";
}
--------------------------------------------------------------------------------
Simple and elegant? Yes


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.