The else of PHP process Control

Source: Internet
Author: User
This article mainly introduces the PHP process control of the else, has a certain reference value, now share to everyone, a need for friends can refer to

This paper tries to use the basic Learning Master, please close this page

Read this article for 3 minutes, it's hard to understand.

(PHP 4, PHP 5, PHP 7)

It is often necessary to execute a statement when a condition is met, and to execute other statements when the condition is not satisfied, which is the function of else. else extends the IF statement, which can be executed when the value of an expression in an if statement is FALSE . For example, the following code shows A is bigger than Bwhen it is greater than, whereas the opposite shows a is not bigger than B:

<?PHPIF ($a > $b) {  echo "can execute";} else {  echo "cannot be executed";}? >

Elsestatement is onlyifas wellElseIfThe value of the expression in the statement (if any) isFALSEwhen executing

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.