


Detailed explanation of php ternary operator, detailed explanation of operator_PHP tutorial
Detailed explanation of php ternary operator, detailed explanation of operator
Today when I was revising my paper online, I encountered a statement that I couldn’t understand:
$if_summary = $row[' IF_SUMMARY']==2?'Yes':'No';
Later, Baidu found out that it is PHP's ternary operator
This sentence means the same as
if($row['IF_SUMMARY ']==2){
$if_summary="Yes";
}else{
$if_summary="No";
}
Ternary operator The function 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 scripts more concise and efficient.
The code format is as follows: (expr1) ? (expr2) : (expr3);
Explanation: If the condition "expr1" is true, execute the statement "expr2", otherwise execute "expr3".
To achieve the same function, if you use conditional flow statements, you need to write multiple lines of code:
if(expr1) {
expr2;
} else {
expr3;
}
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 is greater than b" : print "a is less than b";
In fact, the ternary operator can be extended and used. When the set condition is true or not, the execution statement is It can be more than one sentence, try the following format:
(expr1) ? (expr2).(expr3) : (expr4).(expr5);
We can clearly see that multiple execution statements can use strings Operation symbols (".") are connected, 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);
The readability of the nested ternary operator is not very good, and there may be problems with maintaining the code in the future. However, compared with process statements such as "if...else", in the above situation, it is indeed It's so succinct, and that's the beauty of it.
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 following statements are syntactically correct, they omit the second or third "element" in small dequotation marks:
$a>$b ? print "Yes" : "";
$a>$ b ? '': print 'No';
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['abc'] ? 'wangjinbo' : 'wjb';
This cannot be understood as: When $str is equal to $_GET['abc'], the assigned value is 'wangjinbo' otherwise the assigned value is 'wjb'; reason one: == should be used to judge equality; reason 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: when $_GET[ When 'abc'] is empty (that is, whether '', null, 0, undifine in PHP are all equivalent to the Boolean value false), assign $str to 'wangjinbo', otherwise assign it to 'wjb';
Original link: bbs.php100.com/read-htm-tid-24239.html

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In the C language, there is no root operator. The built-in function "sqrt()" is used to open the root, and the syntax "sqrt(value x)" is used; for example, "sqrt(4)" is to perform the square root operation on 4. , the result is 2. sqrt() is a built-in root operation function in C language. Its operation result is the arithmetic square root of the function variable; this function can neither operate negative values nor output imaginary results.

In Java, "%" means remainder. It is a binary arithmetic operator that can perform division operations and obtain the remainder. The syntax is "operand 1 % operand 2". The operand of the remainder operator "%" is usually a positive integer or a negative number or even a floating point number. If a negative number participates in this operation, the result depends on whether the previous number is positive or negative.

For Golang developers, "invaliduseof...operator" is a common error. This error usually occurs when using variable-length parameter functions. It will be detected at compile time and indicate which parts have problems. This article will introduce how to solve this error. 1. What is a variable-length parameter function? A variable-length parameter function is also called a variable-parameter function. It is a function type in the Golang language. Using variable-length parameter functions, you can define multiple ones as follows

In PHP, the "==" symbol is a comparison operator that can compare whether two operands are equal. The syntax is "operand 1 == operand 2". The "==" operator compares and tests whether the variable on the left (expression or constant) has the same value as the variable on the right (expression or constant); it only compares the values of the variables, not the data types. If the two values are the same, it returns a true value; if the two values are not the same, it returns a false value.

In PHP, you can use the "%" and "==" operators to determine whether two numbers are divisible; you only need to use the "%" operator to divide the two numbers to get the remainder, and then use the "==" operator Just judge whether the obtained remainder is 0. The syntax is "Number 1 % Number 2 == 0". If it is 0, it can be divisible. If it is not 0, it cannot be divisible.

Python is widely used in a wide range of fields with its simple and easy-to-read syntax. It is crucial to master the basic structure of Python syntax, both to improve programming efficiency and to gain a deep understanding of how the code works. To this end, this article provides a comprehensive mind map detailing various aspects of Python syntax. Variables and Data Types Variables are containers used to store data in Python. The mind map shows common Python data types, including integers, floating point numbers, strings, Boolean values, and lists. Each data type has its own characteristics and operation methods. Operators Operators are used to perform various operations on data types. The mind map covers the different operator types in Python, such as arithmetic operators, ratio

The += operator is used to add the value of the left operand to the value of the right operand and assign the result to the left operand. It is suitable for numeric types and the left operand must be writable.

Magic methods in Python are special methods that allow you to add "magic" to a class. They are often named surrounded by two underscores. Python's magic method, also known as the dunder (double underline) method. Most of the time, we use them for simple things like constructors (init), string representations (str, repr) or arithmetic operators (add/mul). In fact, there are many methods that you may not have heard of but are very useful. In this article, we will sort out these magic methods! We all know the size of the iterator __len__ method, which can be used in container classes Implement the len() function on. However, if you want to get the length of a class object that implements iterator
