Master the new features of each version of PHP 7.x

coldplay.xixi
Release: 2023-02-17 21:38:02
forward
2664 people have browsed it

Master the new features of each version of PHP 7.x

New features of PHP 7.x in each version

Preface

Last month my colleague saw me writing

$a = $a ?? '';
Copy after login

and asked me what this way of writing is, is there any other way of writing it? I said this is a writing method that is only available in PHP7 and above. Don’t you know? He said he didn't know.

I muttered in my heart and planned to start writing this blog.

PHP7 should be a modern PHP in addition to the basics. Because in PHP7, strong type definitions and some grammatical writing methods, such as combined comparison operators, define() can define arrays and other features. The formal introduction begins below, starting with PHP7.0. New versions will be added in the future, and they will be added one after another.
Ok, let’s start

Recommended (free):PHP7

PHP 7.0

Scalar type declaration

What is a scalar type?

Four scalar types:
boolean (Boolean type)
integer (integer type)
float (floating point type, also called double)
string (character String)
Two composite types:
array (array)
object (object)
Resource is a special variable that holds a reference to an external resource. Resources are created and used through specialized functions. Resource type variables are special handles for opening files, database connections, graphics canvas areas, etc.
To put it more simply, a scalar type is a data type that defines variables.

In php5, there are class names, interfaces, arrays and callback functions. In PHP, strings, integers, floats, and bools have been added. Let's take an example below. See the example for everything

function typeInt(int $a){ echo $a;}typeInt('sad');// 运行,他讲会报错 Fatal error: Uncaught TypeError: Argument 1 passed to type() must be of the type integer, string given
Copy after login

Here, we define that $a must be of type int. If string is passed in the type function, an error will be reported. Let's modify the above code.

function typeString(string $a){ echo $a;}typeString('sad'); //sad
Copy after login

Return value type declaration

The method return value of the function can be defined. For example, a certain function of mine must return Int type, it will definitely return int. If you return string, an error will be reported. As follows

 1 [1] => 2 [2] => 3 [3] => 4 ) */
Copy after login

What happens when we define an array and return string or other types?

Then he willreport an errorFor example

function returnErrorArray(): array { return '1456546'; } print_r(returnErrorArray()); /* Array Fatal error: Uncaught TypeError: Return value of returnArray() must be of the type array, string returned in */
Copy after login

null merge operator

Due to the fact that there are a large number of three simultaneous uses in daily use In the case of metaexpressions and isset(), we add the syntactic sugar of the null coalescing operator (??). If the variable exists and is not NULL, it returns its own value, otherwise it returns its second operand.

Copy after login

Spaceship operator

// 整数echo 1 <=> 1; // 0 当左边等于右边的时候,返回0echo 1 <=> 2; // -1 当左边小于右边,返回-1echo 2 <=> 1; // 1 当左边大于右边,返回1// 浮点数echo 1.5 <=> 1.5; // 0echo 1.5 <=> 2.5; // -1echo 2.5 <=> 1.5; // 1 // 字符串echo "a" <=> "a"; // 0echo "a" <=> "b"; // -1echo "b" <=> "a"; // 1
Copy after login

define Define array

In versions prior to PHP7, define cannot define arrays It is now possible, for example,

define('ANIMALS', [ 'dog', 'cat', 'bird' ]); echo ANIMALS[1]; // 输出 "cat"
Copy after login

use method batch import

// PHP 7 之前的代码use some\namespace\ClassA;use some\namespace\ClassB;use some\namespace\ClassC as C;use function some\namespace\fn_a;use function some\namespace\fn_b;use function some\namespace\fn_c;use const some\namespace\ConstA;use const some\namespace\ConstB;use const some\namespace\ConstC;// PHP 7+ 及更高版本的代码use some\namespace\{ClassA, ClassB, ClassC as C};use function some\namespace\{fn_a, fn_b, fn_c};use const some\namespace\{ConstA, ConstB, ConstC};
Copy after login

Unicode codepoint translation syntax

echo "\u{aa}"; //ªecho "\u{0000aa}"; //ª echo "\u{9999}"; //香
Copy after login
Anonymous class

logger; } public function setLogger(Logger $logger) { $this->logger = $logger; }}$app = new Application;$app->setLogger(new class implements Logger { //这里就是匿名类 public function log(string $msg) { echo $msg; }});
Copy after login
PHP 7.1

Nullable types

The types of parameters and return values can now be passed in the type Add a question mark before it to allow it to be empty. When this feature is enabled, the parameters passed in or the result returned by the function are either of the given type or null .


        
Copy after login
void

Added a type that returns void, such as


        
Copy after login
Multiple exception capture processing

This function is quite commonly used in daily development


        
Copy after login
PHP 7.2

PHP7.2 is the least new feature in the PHP7 series


Allow trailing commas in grouped namespaces

For example,

Copy after login

Allow overriding of abstract methods

Copy after login

New object types

Copy after login

PHP 7.3

PHP7.3 There are no big changes at the syntax level.

PHP 7.4

Class attributes support type declaration

Congratulations on PHP taking another step towards strong typing

Copy after login
Arrow Functions

Arrow functions provide a shorthand syntax for defining functions using implicit by-value scope binding. It’s similar to the arrow function of JS, but with an fn. A wave of complaints

 $n * $factor, [1, 2, 3, 4]);// $nums = array(10, 20, 30, 40);?>
Copy after login

Null merge operator support method

Copy after login

I am a farmer, a coder who usually writes and pastes code.
If you like it, click "Follow". ######

The above is the detailed content of Master the new features of each version of PHP 7.x. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!