Home Backend Development PHP Tutorial Summarize the use of if, else, elseif, else conditional judgment statements

Summarize the use of if, else, elseif, else conditional judgment statements

Jun 22, 2017 pm 01:12 PM
else elseif Summarize condition

1. if
The if structure is one of the most important features of multilingualincluding php, which allows code fragments to be executed conditionally. The if structure of PHP is similar to the C language:

if (expr)
statement

As defined in the chapter Expression , expr is evaluated as a Boolean. If the value of expr is true, php will execute the statement, if the value is false - the statement will be ignored. See the "Converting to Boolean Values" section for more information on which values ​​are considered false.

If $a is greater than $b, the following example will show that a is bigger than b:

<?php
if ($a > $b)
   print "a is bigger than b";
?>
Copy after login

It is often necessary to execute more than one statement according to conditions. Of course, there is no need to add Previous if clause. These statements can be placed into statement groups. For example, if $a is greater than $b, the following code will display a is bigger than b and assign the value of $a to $b:

<?php
if ($a > $b) {
   print "a is bigger than b";
   $b = $a;
}
?>
Copy after login

if statements can be nested infinitely deep inside other If statement, this provides sufficient flexibility for conditional execution of different parts of the program.

2. else
It is often necessary to execute a statement when a certain condition is met, and execute other statements when the condition is not met. This is the function of else. else extends the if statement to execute the statement when the expression in the if statement evaluates to false. For example, the following code displays a is bigger than b when $a is greater than $b, and otherwise displays a is not bigger than b:

<?php
if ($a > $b) {
   print "a is bigger than b";
} else {
   print "a is not bigger than b";
}
?>
Copy after login
Copy after login

else statement is only used in if and elseif (if any) statements Executed when the expression evaluates to false (see elseif).

3. elseif
elseif, as the name implies, is a combination of if and else. Like else, it extends the if statement and can execute a different statement when the original if expression evaluates to false. But unlike else, it only executes the statement when the conditional expression of elseif evaluates to true. For example, the following code will display a is bigger than b, a equal to b or a is smaller than b respectively according to the conditions:

<?php
if ($a > $b) {
   print "a is bigger than b";
} elseif ($a == $b) {
   print "a is equal to b";
} else {
   print "a is smaller than b";
}
?>
Copy after login

There can be multiple elseif statements in the same if structure. The first elseif statement (if any) whose expression evaluates to true will be executed. In php, it can also be written as "else if" (two words), which is exactly the same behavior as "elseif" (one word). There is a slight difference in the meaning of syntax analysis (it's the same behavior if you're familiar with C), but the bottom line is that both produce exactly the same behavior.

elseif statement is only executed when the previous if or elseif expression value is false and the current elseif expression value is true.

4. else
It is often necessary to execute a statement when a certain condition is met, and execute other statements when the condition is not met. This is the function of else. else extends the if statement to execute the statement when the expression in the if statement evaluates to false. For example, the following code displays a is bigger than b when $a is greater than $b, and otherwise displays a is not bigger than b:

<?php
if ($a > $b) {
   print "a is bigger than b";
} else {
   print "a is not bigger than b";
}
?>
Copy after login
Copy after login

else statement is only used in if and elseif (if any) statements Executed when the expression evaluates to false (see elseif).

The above is the detailed content of Summarize the use of if, else, elseif, else conditional judgment statements. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Summarize the usage of system() function in Linux system Summarize the usage of system() function in Linux system Feb 23, 2024 pm 06:45 PM

Summary of the system() function under Linux In the Linux system, the system() function is a very commonly used function, which can be used to execute command line commands. This article will introduce the system() function in detail and provide some specific code examples. 1. Basic usage of the system() function. The declaration of the system() function is as follows: intsystem(constchar*command); where the command parameter is a character.

How to solve Python's loop condition error? How to solve Python's loop condition error? Jun 24, 2023 pm 07:50 PM

Python is a popular high-level programming language that is very practical and flexible. However, when writing loops in Python, sometimes you encounter the problem of incorrect loop conditions. This article will introduce the causes and solutions of loop condition errors in Python. 1. Causes of loop condition errors Loop condition errors are usually caused by errors in variable values ​​or logic errors. The specific performance is: the variable is not updated correctly. If the variables in the loop are not updated correctly, the loop condition will always remain the same. The conditional expression is malformed. if clause

What are the prerequisites for win10 system installation? What are the prerequisites for win10 system installation? Jan 15, 2024 am 10:42 AM

If we want to install the win10 operating system, we first need to know whether our hardware equipment can install the win10 operating system. However, generally speaking, devices that can run win7 and win8 can also be installed. Win10 does not have high requirements for hardware equipment. So let’s take a look at the configuration requirements of the win10 system with the editor~ What are the requirements for installing the win10 system? Memory: 2GB memory for 64-bit architecture and 1GB memory for 32-bit architecture. Storage: 20GB of available space for 64-bit systems and 16GB of available space for 32-bit systems. Although not officially documented, it's best to have 50GB of remaining storage for a flawless experience. CPU frequency: up to 1GHz. Screen resolution: 8

How to use IF conditional statements in PHP How to use IF conditional statements in PHP Jun 11, 2023 am 11:35 AM

If you want to implement some specific conditional logic in your PHP application, the IF conditional statement is an essential tool. In PHP, these conditional statements are used to execute different blocks of code, depending on whether a variable or condition in the program is true. Typically, an IF statement will check a certain condition and determine whether to execute a piece of code based on the result of the condition. Here is a simple example: $num=5;if($num&gt;0){echo"$n

Git workflow management experience summary Git workflow management experience summary Nov 03, 2023 pm 06:45 PM

Summary of Git workflow management experience Introduction: In software development, version management is a very important link. As one of the most popular version management tools currently, Git's powerful branch management capabilities make team collaboration more efficient and flexible. This article will summarize and share the experience of Git workflow management. 1. Introduction to Git workflow Git supports a variety of workflows, and you can choose the appropriate workflow according to the actual situation of the team. Common Git workflows include centralized workflow, feature branch workflow, GitF

What is the usage of else in Python loop structure? What is the usage of else in Python loop structure? Sep 26, 2023 am 10:52 AM

In Python's loop structure, the else block is used to execute a specific piece of code when the loop ends normally. If the loop is interrupted by a break statement, the code in the else block will not be executed. Using else blocks can make the code clearer and easier to understand, and can perform some necessary operations after the loop ends.

What are the different types of keywords in C language? What are the different types of keywords in C language? Sep 14, 2023 pm 02:57 PM

Keywords are often called predefined or reserved words in programming languages. Each keyword in C language performs a specific function in the program. Keywords cannot be used as variable names. Keywords have a fixed meaning and cannot be changed. They are the building blocks of 'C' programs. C language supports 32 keywords. All keywords are written in lowercase letters. The different types of keywords are as follows: autodoubleintstructbreakelselongswitchcaseenumregistertypedefcharexternreturnunionconstshortfloatunsignedcontinueforsignedv

What are the requirements for live streaming of goods through a video account? How to open a window to sell things? What are the requirements for live streaming of goods through a video account? How to open a window to sell things? Mar 07, 2024 pm 03:30 PM

With the rapid development of mobile Internet, live video broadcast has become a popular form of social media. In China, live streaming of goods through video accounts is rapidly emerging and has become a new model in the e-commerce industry. Through live video broadcasts, anchors can showcase products, interact with viewers, and directly promote products. However, becoming a successful video account live broadcast anchor is not an easy task. 1. What are the requirements for live streaming of goods through a video account? In the live broadcast of video accounts, the image of the anchor is very important. It’s not just about appearance, it’s also about demeanor and demeanor. Anchors need to pay attention to their image building to ensure they leave a good first impression on the audience. Product knowledge is crucial for streamers, they need to have in-depth knowledge and familiarity with the products they want to promote. only clear

See all articles