PHP5.5 ~ PHP7.2 new features arrangement
1. Migrating from PHP 5.5.x to PHP 5.6.x
In previous PHP versions, you had to use static values to define constants, declare properties, and specify default values for function parameters. You can now use numeric expressions including numbers, string literals, and other constants to define constants, declare properties, and set default values for function parameters.
Copy after login
You can now define constants of type array through the const keyword.
Copy after login
...
operator to define a variable-length parameter functionYou can now use the... operator without relying on func_get_args() To implement a variable-length parameter function.
The above routine will output:
$req: 1; $opt: 0; number of params: 0 $req: 1; $opt: 2; number of params: 0 $req: 1; $opt: 2; number of params: 1 $req: 1; $opt: 2; number of params: 2
...
operator for parameter expansionWhen calling the function When using... operator, arrays and traversable objects are expanded into function parameters. In other programming languages, such as Ruby, this is called the concatenation operator.
The above routine will output:
6
use operators have been extended to support importing in classes External functions and constants. The corresponding structures are use function and use const.
The above routine will output:
42 Name\Space\f
Recommended (free):PHP7
##2. Migrating from PHP 5.6.x to PHP 7.0.x
Copy after login
int(9)
Copy after login
??) This syntactic sugar. If the variable exists and is not NULL, it returns its own value, otherwise it returns its second operand.
'1'; // 0 echo 1 <=> 2; // -1 echo 2 <=> 1; // 1 // 浮点数 echo '1.50' <=> 1.5; // 0 echo 1.5 <=> 2.5; // -1 echo 2.5 <=> 1.5; // 1 // 字符串 echo "a" <=> "a"; // 0 echo "a" <=> "b"; // -1 echo "b" <=> "a"; // 1 ?>
define('ANIMALS', [ 'dog', 'cat', 'bird' ]); echo ANIMALS[1]; // 输出 "cat"
x;}; $getX = $getXCB->bindTo(new A, 'A'); // 中间层闭包 echo $getX(); // PHP 7+ 及更高版本的代码 $getX = function() {return $this->x;}; echo $getX->call(new A);
1
Statement
Ported from PHP 7.0.x to PHP 7.1.x
Copy after login
string(10) "elePHPant" NULL string(10) "elePHPant" NULL Uncaught Error: Too few arguments to function test(), 0 passed in...
Copy after login
null int(2) int(1)
Copy after login
Copy after login
现在引入了一个新的被称为iterable的伪类 (与callable类似)。 这可以被用在参数或者返回值类型中,它代表接受数组或者实现了Traversable接口的对象。 至于子类,当用作参数时,子类可以收紧父类的iterable类型到array 或一个实现了Traversable的对象。对于返回值,子类可以拓宽父类的 array或对象返回值类型到iterable。
Copy after login
一个catch语句块现在可以通过管道字符(|)来实现多个异常的捕获。 这对于需要同时处理来自不同类的不同异常时很有用。
Copy after login
list()
现在支持键名现在list()和它的新的[]语法支持在它内部去指定键名。这意味着它可以将任意类型的数组 都赋值给一些变量(与短数组语法类似)
1, "name" => 'Tom'], ["id" => 2, "name" => 'Fred'], ]; // list() style list("id" => $id1, "name" => $name1) = $data[0]; // [] style ["id" => $id1, "name" => $name1] = $data[0]; // list() style foreach ($data as list("id" => $id, "name" => $name)) { // logic here with $id and $name } // [] style foreach ($data as ["id" => $id, "name" => $name]) { // logic here with $id and $name }
从PHP 7.1.x 移植到 PHP 7.2.x
这种新的对象类型, object, 引进了可用于逆变(contravariant)参数输入和协变(covariant)返回任何对象类型。
Copy after login
当一个抽象类继承于另外一个抽象类的时候,继承后的抽象类可以重写被继承的抽象类的抽象方法。
abstract class A { abstract function test(string $s); } abstract class B extends A { // overridden - still maintaining contravariance for parameters and covariance for return abstract function test($s) : int; }
重写方法和接口实现的参数类型现在可以省略了。不过这仍然是符合LSP,因为现在这种参数类型是逆变的。
interface A { public function Test(array $input); } class B implements A { public function Test($input){} // type omitted for $input }
命名空间可以在PHP 7中使用尾随逗号进行分组引入。
use Foo\Bar\{ Foo, Bar, Baz, };
The above is the detailed content of Organize new features of PHP5.5 ~ PHP7.2. For more information, please follow other related articles on the PHP Chinese website!