php7新特性
用于比较2个表达式,例如当\(a小于,等于或大于\)b时,分别返回-1,0,1
echo 1 1; //0 echo PHP_EOL; echo 1 2; //-1 echo PHP_EOL; echo 2 1; //1
declare(strict_types=1); //strict_types=1表示严格模式 function sum(int ...$ints){ return array_sum($ints); } var_dump(sum(1,'2','3.1',4.1));
Fatal error: Uncaught TypeError: Argument 2 passed to sum() must be of the type integer, string given
下面代码声明返回值为int
declare(strict_types=1); function sum(int ...$ints):int { return array_sum($ints); } var_dump(sum(1,2,3)); //6
php7.1对函数返回值类型做了扩充,可定义返回值类型为void,无论是否开启严格模式,只要函数有"return;" 以外的其它return语句都会报错
declare(strict_types=1); function sum(int ...$ints):void { // return NULL; //报错 return ; //后面有 "return;"之外的语句也报错 // return array_sum($ints); } var_dump(sum(1,2,3));
php7.1对参数类型和返回值类型还有进一步的支持,其类型可以使空类型,在参数或者返回值类型声明前加上"?"表示要么是null,要么是声明的类型
declare(strict_types=1); function test(?int $a):?int { return $a; } var_dump(test(null)); //NULL var_dump(test(1)); //int(1) var_dump(test('a')); // Fatal error
$page=isset($_GET['p'])?$_GET['p']:0; //php7 $page =$_GET['p'] ??0; //三元运算符 $page =$_GET['p'] ?? $_POST['p'] ??0;
php7之前无法通过define来定义一个常量数组的,php7支持了这个操作
define('STUDENT',['boy','girl']); print_r(STUDENT);
//php之前 use Space\ClassA; use Space\ClassB; use Space\ClassC C; //php7 use Space\{ClassA,ClassB,ClassC as C};
在php7之前,如果代码中有语法错误或者fatal error时,程序会直接报错退出,php7中实现了全局throwable接口,原来的Exception和部分Error实现了该接口
这种Error可以像Exception一样被第一个匹配的try/catch块捕获。如果没有匹配的catch块,则调用异常函数处理。如果尚未注册异常处理函数,则按照传统方式处理(Fatal error)
Error类并非继承自Exception,所以不能用catch(Exception $e){}来捕获,可用catch(Error $e){} ,或者通过注册异常处理函数(set_exception_handler())来捕获Error
try{ abc(); }catch (Error $e){ print_r($e); } echo 123;
Error Object ( [message:protected] => Call to undefined function abc() [string:Error:private] => [code:protected] => 0 [file:protected] => /mnt/hgfs/www/web/md.php [line:protected] => 4 [trace:Error:private] => Array ( ) [previous:Error:private] => ) 123
set_exception_handler(function($e){ echo "err:".print_r($e,true); }); abc(); echo 123;
php7下结果,php5依然Fatal error
err:Error Object ( [message:protected] => Call to undefined function abc() [string:Error:private] => [code:protected] => 0 [file:protected] => /mnt/hgfs/www/web/md.php [line:protected] => 7 [trace:Error:private] => Array ( ) [previous:Error:private] => ) 之后的也不会执行了
class People{ private $age=10; } $f=function(){ return $this->age+1; }; $p=$f->bindTo(new People,'People'); echo $p();
class People{ private $age=10; } $f=function(){ return $this->age+1; }; echo $f->call(new People);
echo intdiv(10,3);
$a=[1,2,3]; list($n1,$n2,$n3)=$a; //php7 [$n1,$n2,$n3]=[4,5,6]; //[]并不是数组,而是list的简略形式
$arr=[1,2,3,4,5,6]; foreach ($arr as $key => $value) { if($value ==2) break; } echo current($arr);//php7下 1,php5下 3
interface Cache{ public function read (); } class Ca { private $cache; public function setcache(Cache $cache){ $this->cache=$cache; } } $fcache =new Ca; $fcache->setcache(new Class implements Cache { public function read(){ } });
其它,移除ASP和script PHP标签,移除$HTTP_RAW_POST_DATA、匿名类、常量类可见性等