PHP 7 的 5 大新特性

1. ?? 运算符(NULL 合并运算符)

把这个放在第一个说是因为我觉得它很有用。用法:

$a = $_GET['a'] ?? 1;

它相当于:

<?php
$a = isset($_GET['a']) ? $_GET['a'] : 1;

我们知道三元运算符是可以这样用的:

$a ?: 1

但是这是建立在 $a 已经定义了的前提上。新增的 ?? 运算符可以简化判断。

2. 函数返回值类型声明

官方文档提供的例子(注意 … 的边长参数语法在 PHP 5.6 以上的版本中才有):

<?php
function arraysSum(array ...$arrays): array { return array_map(function(array $array): int { return array_sum($array); }, $arrays); } print_r(arraysSum([1,2,3], [4,5,6], [7,8,9]));

从这个例子中可以看出现在函数(包括匿名函数)都可以指定返回值的类型。

这种声明的写法有些类似于 swift:

func sayHello(personName: String) -> String {
    let greeting = "Hello, " + personName + "!" return greeting }

这个特性可以帮助我们避免一些 PHP 的隐式类型转换带来的问题。在定义一个函数之前就想好预期的结果可以避免一些不必要的错误。

不过这里也有一个特点需要注意。PHP 7 增加了一个 declare 指令:strict_types,既使用严格模式。

使用返回值类型声明时,如果没有声明为严格模式,如果返回值不是预期的类型,PHP 还是会对其进行强制类型转换。但是如果是严格模式, 则会出发一个 TypeError 的 Fatal error。

强制模式:

<?php
function foo($a) : int { return $a; } foo(1.0);

以上代码可以正常执行,foo 函数返回 int 1,没有任何错误。

严格模式:

<?php
declare(strict_types=1);

function foo($a) : int { return $a; } foo(1.0); # PHP Fatal error: Uncaught TypeError: Return value of foo() must be of the type integer, float returned in test.php:6

在声明之后,就会触发致命错误。

是不是有点类似与 js 的 strict mode?

3. 标量类型声明

PHP 7 中的函数的形参类型声明可以是标量了。在 PHP 5 中只能是类名、接口、array 或者 callable (PHP 5.4,即可以是函数,包括匿名函数),现在也可以使用 string、int、float和 bool 了。

官方示例:

<?php
// Coercive mode
function sumOfInts(int ...$ints) { return array_sum($ints); } var_dump(sumOfInts(2, '3', 4.1));

需要注意的是上文提到的严格模式的问题在这里同样适用:强制模式(默认,既强制类型转换)下还是会对不符合预期的参数进行强制类型转换,严格模式下则触发 TypeError 的致命错误。

4. use 批量声明

PHP 7 中 use 可以在一句话中声明多个类或函数或 const 了:

<?php
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};

但还是要写出每个类或函数或 const 的名称(并没有像 python 一样的 from some import * 的方法)。

需要留意的问题是:如果你使用的是基于 composer 和 PSR-4 的框架,这种写法是否能成功的加载类文件?其实是可以的,composer 注册的自动加载方法是在类被调用的时候根据类的命名空间去查找位置,这种写法对其没有影响。

5. 其他的特性

其他的一些特性我就不一一介绍了,有兴趣可以查看官方文档:http://php.net/manual/en/migration70.new-features.php

简要说几个:

  • PHP 5.3 开始有了匿名函数,现在又有了匿名类了;
  • define 现在可以定义常量数组;
  • 闭包( Closure)增加了一个 call 方法;
  • 生成器(或者叫迭代器更合适)可以有一个最终返回值(return),也可以通过 yield from 的新语法进入一个另外一个生成器中(生成器委托)。

生成器的两个新特性(return 和 yield from)可以组合。具体的表象大家可以自行测试。PHP 7 现在已经到 RC5 了,最终的版本应该会很快到来。

http://www.cere.cc/editor/attached/file/20200520/20200520225629_7073.html
http://www.cere.cc/editor/attached/file/20200520/20200520225623_6136.html
http://www.cere.cc/editor/attached/file/20200520/20200520225909_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520230101_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225701_2230.html
http://www.cere.cc/editor/attached/file/20200520/20200520225805_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225615_4886.html
http://www.cere.cc/editor/attached/file/20200520/20200520225925_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225549_3636.html
http://www.cere.cc/editor/attached/file/20200520/20200520225725_2230.html
http://www.cere.cc/editor/attached/file/20200520/20200520225957_2855.html
http://www.cere.cc/editor/attached/file/20200520/20200520230029_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225941_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225709_3323.html
http://www.cere.cc/editor/attached/file/20200520/20200520230005_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225605_2698.html
http://www.cere.cc/editor/attached/file/20200520/20200520230021_2698.html
http://www.cere.cc/editor/attached/file/20200520/20200520230037_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225829_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225933_3792.html
http://www.cere.cc/editor/attached/file/20200520/20200520225646_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225821_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225653_3167.html
http://www.cere.cc/editor/attached/file/20200520/20200520225749_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520230013_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225853_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225949_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225813_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225541_4261.html
http://www.cere.cc/editor/attached/file/20200520/20200520230109_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225733_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520230053_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520230045_3480.html
http://www.cere.cc/editor/attached/file/20200520/20200520225845_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225741_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225837_2542.html
http://www.cere.cc/editor/attached/file/20200520/20200520225557_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225901_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225637_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225917_2386.html
http://www.cere.cc/editor/attached/file/20200520/20200520225757_3480.html
http://www.cere.cc/editor/attached/file/20200520/20200520225717_2386.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225554_3577.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230001_3249.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230113_3088.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225602_2483.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225627_6075.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225642_2324.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225737_2008.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225809_2006.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230017_3248.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225833_2786.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225634_7793.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225825_2317.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225621_5763.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230010_2311.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230105_3245.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225921_2002.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225722_2165.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225914_2158.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225849_7160.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230041_3402.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225755_2163.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225931_2782.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225658_2167.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225841_2785.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225538_4360.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225729_1696.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230026_2310.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230033_3091.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225650_2792.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225954_2156.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225857_4034.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225706_2167.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225905_2002.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225745_2007.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225612_3264.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225714_2009.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225801_3569.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225946_2156.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230057_3089.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230049_3246.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225817_1693.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225936_4188.html
http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225547_2015.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225782878287.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230193359335.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225859065906.html
http://www.lited.com/kindeditor/attached/file/20200520/2020052022550199199.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230013641364.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230073047304.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225882568256.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225921442144.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225771607160.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230068686868.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230068366836.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225741874187.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230076137613.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225812051205.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225794879487.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230068486848.html
http://www.lited.com/kindeditor/attached/file/20200520/2020052022590737737.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225816741674.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225937113711.html
http://www.lited.com/kindeditor/attached/file/20200520/2020052022570288288.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230031793179.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225759495949.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225637053705.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225564196419.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225674957495.html
http://www.lited.com/kindeditor/attached/file/20200520/2020052022570264264.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225646784678.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225932533253.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225635573557.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520230079607960.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225865236523.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225617811781.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225830113011.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225913661366.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225631473147.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225569126912.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225874617461.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225977647764.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225614371437.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225835853585.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225954435443.html
http://www.lited.com/kindeditor/attached/file/20200520/20200520225614001400.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110041_3737.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110033_3610.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105913_4438.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105601_4069.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105754_4366.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105728_3882.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105621_6253.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105816_3886.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105801_4234.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110049_3684.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105546_3535.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105849_3375.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105736_4024.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110017_6563.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105904_3973.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105841_3352.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105744_4274.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105538_8550.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105857_3186.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105945_4449.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105641_4251.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105553_5204.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105657_4277.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105833_3492.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105611_4228.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105824_4419.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105808_4393.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105936_4661.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105920_4303.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105650_3511.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110025_3626.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110057_3663.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105713_4542.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110001_3949.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110113_3475.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105930_3911.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105721_4269.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110105_3861.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520110009_3431.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105705_3277.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105634_8100.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105626_8096.html
http://www.qdc.com/kindeditor/attached/file/20200520/20200520105953_3450.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230021352135.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225943854385.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225726662666.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225757355735.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225826112611.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225621282128.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230036953695.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225994789478.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230019831983.html
http://www.scjkc.cn/uploadfile/file/20200520/2020052023000728728.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225682258225.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225780798079.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230171327132.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225670977097.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225741314131.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225830743074.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225838523852.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225521152115.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225629802980.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225911941194.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225650045004.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230032273227.html
http://www.scjkc.cn/uploadfile/file/20200520/2020052022570636636.html
http://www.scjkc.cn/uploadfile/file/20200520/2020052022590421421.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230016661666.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225524292429.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225896409640.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225715151515.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225775997599.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225940714071.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225890149014.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225846354635.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225512611261.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225692299229.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225677917791.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225754205420.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225637513751.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230077637763.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225929382938.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520230151035103.html
http://www.scjkc.cn/uploadfile/file/20200520/20200520225994849484.html

猜你喜欢

转载自www.cnblogs.com/y7y457yrty/p/12934453.html