권장(무료): PHP7
1.
문법: If 변수가 존재하고 값이 NULL이 아니면 자체 값을 반환하고, 그렇지 않으면 두 번째 피연산자를 반환합니다. 1 //php7以前
if判断
2 if(empty($_GET['param'])) {
3 $param = 1;
4 }else{
5 $param = $_GET['param'];
6 } 7
8 //php7以前 三元运算符
9 $param = empty($_GET['param']) ? 1 : $_GET['param'];10
11 //PHP7 null合并运算符12 $param = $_GET['param'] ?? 1;//1
2. 정의()는 상수 배열을 정의합니다 1 //php7以前
2 define("CONTENT", "hello world");
3 echo CONTENT;//hello world 4
5 //PHP7 6 define('ANIMALS', [
7 'dog',
8 'cat',
9 'bird'
10 ]);
11 echo ANIMALS[2];//bird12
13 //PHP7 类外也可使用const来定义常量
14 const CONSTANT = 'Hello World';
15 echo CONSTANT;//Hello World
3 . 결합 비교 연산자(<=>)
결합 비교 연산자는 $a가 $b보다 작거나 같거나 클 때 -1을 반환하고 0 또는 1. 비교 원칙은 PHP의 일반적인 비교 규칙을 따르는 것입니다. 1 //整数
2 echo 1 <=> 1; // 0
3 echo 1 <=> 2; // -1
4 echo 2 <=> 1; // 1 5
6 //浮点数 7 echo 1.5 <=> 1.5; // 0
8 echo 1.5 <=> 2.5; // -1
9 echo 2.5 <=> 1.5; // 1
11 //字符串12 echo "a" <=> "a"; // 0
13 echo "a" <=> "b"; // -1
14 echo "b" <=> "a"; // 1
4. 변수 유형 선언
두 가지 모드: 필수(기본값) 및 엄격 모드. 유형 매개변수를 사용할 수 있습니다: string, int, float, bool 1 //... 操作符: 表示这是一个可变参数. php5.6及以上的版本可使用: 函数定义的时候变量前使用.
2 function intSum(int ...$ints){
3 return array_sum($ints);
4 }
5 var_dump(intSum(2,'3.5'));//5
6
7 //严格模式
8 //模式声明:declare(strict_types=1); 默认情况值为0,值为1代表为严格校验的模式
9 declare(strict_types=1);
10 function add(int $a,int $b){
11 return $a+$b;
12 }
13 var_dump(add(2,'3.5')); //Fatal error: Uncaught TypeError: Argument 2 passed to add() must be of the type integer
5. 반환 값 유형 선언
매개변수 유형 선언과 유사하게 추가하세요. 함수 정의 후) functionRRREERREEEE6은 새로운 클래스 {}가 익명의 객체를 생성 할 수 있습니다
Closure::call() 메서드는 객체 범위를 클로저에 임시로 바인딩하고 호출하는 간단한 방법으로 추가되었습니다. 이 메서드의 성능은 PHP5의 binTo.1 //有效的返回类型
2 declare(strict_types = 1);
3 function getInt(int $value): int {
4 return $value;
5 }
6 print(getInt(6));//6
1 //无效返回类型
2 declare(strict_types = 1);
3 function getNoInt(int $value): int {
4 return $value+'2.5';
5 }
6 print(getNoInt(6));//Fatal error: Uncaught TypeError: Return value of getNoInt() must be of the type integer
unserialize() 기능: 필터링 기능을 사용하면 불법 데이터의 코드 삽입을 방지하여 더 안전한 역직렬화된 데이터를 제공할 수 있습니다. Char: 일부에 대한 액세스를 제공합니다. 참고:
1 <?php 2 //php7以前 接口实现 3 interface User{ 4 public function getDiscount(); 5 } 6 class VipUser implements User{ 7 //折扣系数 8 private $discount = 0.6; 9 public function getDiscount() { 10 return $this->discount; 11 } 12 } 13 class Goods{ 14 private $price = 200; 15 private $objectVipUser; 16 //User接口VipUser类实现 17 public function getUserData($User){ 18 $this->objectVipUser = $User; 19 $discount = $this->objectVipUser->getDiscount(); 20 echo "商品价格:".$this->price*$discount; 21 } 22 } 23 $display = new Goods(); 24 //常规实例化接口实现对象 25 $display ->getUserData(new VipUser);//商品价格:120
10.CSPRNG
CSPRNG 함수는 암호화 난수를 생성하는 간단한 메커니즘을 제공합니다. .
random_bytes() - 암호화로 보호된 의사 난수 문자열random_int() - 암호화로 보호된 의사 난수 정수
1 <?php 2 //php7 创建一个匿名的对象 3 interface User{ 4 public function getDiscount(); 5 } 6 class Goods{ 7 private $price = 200; 8 private $objectVipUser; 9 public function getUserData($User){ 10 $this->objectVipUser = $User; 11 $discount = $this->objectVipUser->getDiscount(); 12 echo "商品价格:".$this->price*$discount; 13 } 14 } 15 $display = new Goods(); 16 //new匿名对象实现user接口 17 $display ->getUserData(new class implements User{ 18 private $discount = 0.6; 19 public function getDiscount() { 20 return $this->discount; 21 } 22 });//商品价格:120
11. 명령문 사용
당신은 사용할 수 있습니다 단일 사용 문을 사용하면 여러 use 문을 사용하는 대신 동일한 네임스페이스에서 클래스, 함수 및 상수를 가져올 수 있습니다. 1 <?php
2 //php7以前
3 class A {
4 private $attribute = 'hello world';
5 }
6
7 $getClosure = function(){
8 return $this->attribute;
9 };
10
11 $getAttribute = $getClosure->bindTo(new A, 'A');//中间层闭包
12 echo $getAttribute();//hello world
새 추가 intp() 함수는 두 개의 매개 변수를 받고 반환 값은 는 첫 번째 매개변수를 두 번째 매개변수로 나누고 반올림한 값입니다.
위 내용은 php7의 새로운 기능 이해 및 비교의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!