Home Backend Development PHP Tutorial Detailed explanation of php ternary operator and if

Detailed explanation of php ternary operator and if

May 15, 2018 pm 03:08 PM
php operator

Ternary operator syntax: condition ? result 1 : result 2 Note: The position in front of the question mark is the condition for judgment. If the condition is met, the result is 1, and if it is not met, the result is 2.

Recommended manual: php complete self-study manual

This article compares and explains the ternary operator and if...else... in detail. I hope to be helpful.

Today when I was revising my paper online, I came across a sentence that I couldn’t understand:

$if_summary = $row['IF_SUMMARY']==2?'是':'否';
Copy after login

Later on Baidu, I found out that it was the ternary operator of PHP

This sentence The meaning is the same as

if($row['IF_SUMMARY']==2){
$if_summary="是";
}else{
$if_summary="否";
}
Copy after login

The function of the ternary operator is consistent with the "if...else" process statement. It is written in one line, and the code is very concise and the execution efficiency is higher.

Appropriate use of the ternary operator in PHP programs can make the script more concise and efficient.

The code format is as follows:

(expr1) ? (expr2) : (expr3);
Copy after login

Explanation:

If the condition "expr1" is true, execute the statement "expr2", otherwise execute "expr3".

To achieve the same function, if you use conditional process statements, you need to write multiple lines of code:

if(expr1) {

expr2;
} else {
expr3;
}
Copy after login

It can be seen that the goodness of the ternary operator mentioned above is not an exaggeration. However, in most cases we only use the ternary operator when the code is relatively simple, that is, when the execution statement is only a single statement.

For example:

$a>$b ? print "a大于b" : print "a小于b";
Copy after login

In fact, the ternary operator can be extended and used. When the set condition is true or not, the execution statement can be more than one sentence. Try the following format:

(expr1) ? (expr2).(expr3) : (expr4).(expr5);
Copy after login

We can clearly see that multiple execution statements can be connected using string operation symbols ("."), and each execution statement is surrounded by small angle brackets to indicate that it is an independent and complete execution statement.

After this expansion, its function is closer to the "if...else" process statement.

At the same time, the ternary operator can also be used nested.

For example, when a is greater than b: if a is less than c, then x=c-a otherwise x=a-c;

Otherwise, when a is less than b: if b is less than c, then x=c-b Otherwise x=b-c:

$a>$b ? $x=($a<$c ? $c-$a : $a-$c) : $x=($b<$c ? $c-$b : $b-$c);
Copy after login

The ternary operator used in nesting is not very readable, and there may be problems with maintaining the code in the future, but compared with "if...else" and the like Process statement, in the above situation, is indeed too concise, which is its attractiveness.

For those who like to be lazy and pursue code simplicity, using the ternary operator to replace the if process statement should be an excellent choice. Even if there is no need to consider any "element" other than the conditional sentence in the "ternary", using the ternary operator is still more concise than if statements.

The syntax of the following statements is correct, they omit the second or third "element" in small dequotation marks:

$a>$b ? print "Yes" : "";
$a>$b ? &#39;&#39;: print &#39;No&#39;;
Copy after login

It should be noted that:

When using the ternary operator, it is recommended to use the print statement instead of the echo statement.

Pay attention to the understanding of the following series of statements:

$str = $_GET[&#39;abc&#39;] ? &#39;wangjinbo&#39; : &#39;wjb&#39;;
Copy after login

This cannot be understood as:

When $str is equal to $_GET['abc'], the assigned value is 'wangjinbo' Otherwise, the value is assigned to 'wjb';

Because one: == should be used to judge equality;

Cause two: The syntax of the ternary operator is as shown above: (expr1) ? (expr2) : (expr3), obviously the above binary, ternary 'wangjinbo' or 'wjb' cannot form a meaningful expression alone;

The correct understanding is:

$_GET['abc'] is a null value (that is, whether (false), ' ', null, 0, and undifine in PHP are all equivalent to the Boolean value false). At this time, $str is assigned the value 'wjb' , otherwise the value is 'wangjinbo';

Note:

When there is no condition in the IF statement condition, the content itself $_GET['abc'] is true, the condition is established, and the str value is 'wangjinbo' ', otherwise the value is 'wjb'; when there is no clear value of true, true means there is a value, and false means there is no value.

Recommended related articles:
1.PHP ternary operator: fast or not?
2.Simple comparison of ternary operator and Null coalescing operator in PHP
3.What are the common operators in php
Related video recommendations:
1.Dugu Jiujian (4)_PHP video tutorial

The above is the detailed content of Detailed explanation of php ternary operator and if. 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)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles