欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP7变化介绍

程序员文章站 2022-03-24 18:49:27
...
本文内容根据PHP发布时的 new files 而来,链接地址 : PHP 7 new

特性一览

  • Added ?? operator
  • Added operato
    新的操作符
php// PHP 7之前的写法:比较两个数的大小function order_func($a, $b) {    return ($a  $b) ? 1 : 0);}// PHP新增的操作符 ,perfectfunction order_func($a, $b) {    return $a  $b;}
  • Added \u{xxxxx} Unicode Codepoint Escape Syntax
    可以直接使用这种方式输出unicode字符
phpecho "\u{1F602}"; // outputs                 
相关标签: PHP7变化介绍