1、性能改进-PHP7中的PHPNG代码是PHP5的两倍。
2、低内存消耗-优化的PHP7使用较少的资源。
3、标准类型声明-现在可以强制执行参数和返回类型。
太空船操作符:<=>
当前面的值小于 等于 大于 时分别返回 -1 0 1
echo 1<=>1 0; echo 1<=>2 -1; echo 2<=>1 1;
类型声明:declare
declare(strict_types=1); strict_types=1开启严格模式,可以定义方法传递的值的类型,如果不符将报错
例:function sumOfInts(int $ints):int{
return array_sum($ints);
}
null 合并操作符
$_GET[‘page’]??0; 如果存在则返回$_GET[‘page’]的值,否则返回0
常量数组 不可以修改
define(‘ANIMALS’,[‘dog’,’cat’,’bird’]);
namespace 批量引入 类
use Space{ClassA,ClassB,ClassC as C}
throwable接口 :下面两种方法都可以获取error的错误信息
1、
try{
undefindfunc();
} catch (Error $e) {
var_dump($e);
}
2、
set_exception_handler(function($e){
var_dump($e);
});
undefindfunc();
Closure::call() 操作类中的私有属性
class Test{
private $num = 1;
}
$f = function(){
return $this->num = 1;
}
echo $f->call(new Test).’n’; call 实例化Test以操作类中的私有属性
intdiv() 函数:获取除法后的整数位
intdiv(10,3);
list的方括号方法
$arr = [1,2,3];
list($a,$b,$c) = $arr; [$a,$b,$c] = $arr;//php7的新特性 $a,$b,$c的值都等于$arr
抽象语法数(AST)
($a)[‘b’] = 1;