Home >Backend Development >PHP7 >Let's take a look at the new operators in PHP7

Let's take a look at the new operators in PHP7

coldplay.xixi
coldplay.xixiforward
2020-06-23 17:53:273438browse

Let's take a look at the new operators in PHP7

##NULL merge operator

is actually ternary Operator transformation, reduced code amount

//原先的做法
//$lig = isset($_GET['lig'])?$_GET['lig']:'bee';$lig = $_GET['lig']??'bee';echo $lig;
Running results:

Lets take a look at the new operators in PHP7

Spaceship operator (combination comparison operator)

The essence is a size comparison operator, but compared to '', the return value is -1 more. It has a similar function to Java's string comparison compareto()

<?phpecho 1<=>1.1;print (PHP_EOL);//换行符echo "<br>";print (1.1<=>1);echo "<br>";echo 1<=>&#39;1&#39;;
Run results:

Lets take a look at the new operators in PHP7

Recommended tutorial: "

php video tutorial"

The above is the detailed content of Let's take a look at the new operators in PHP7. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete