PHP 7.2中的新功能(參數類型聲明)

PHP 7.2已於 11月30日正式發佈,該版本具備新特性,功能和改進,可讓咱們編寫更好的代碼。在這篇文章中,我將介紹一些PHP 7.2中最有趣的語言特性-參數類型聲明。php

參數類型聲明

從PHP 5開始,咱們能夠在函數的聲明中指定預期要傳遞的參數類型。若是給定值的類型不正確,那麼PHP將引起錯誤。參數類型聲明(也稱爲類型提示)指定預期傳遞給函數或類方法的變量的類型。數組

來一個例子:app

class MyClass {
    public $var = 'Hello World';
}

$myclass = new MyClass;

function test(MyClass $myclass){
    return $myclass->var;
}

echo test($myclass);

在這段代碼中,測試函數須要MyClass的一個實例。不正確的數據類型會致使如下致命錯誤:函數

Fatal error: Uncaught TypeError: Argument 1 passed to test() must be an instance of MyClass, string given, called in /app/index.php on line 12 and defined in /app/index.php:8

因爲PHP 7.2 類型提示能夠與對象數據類型一塊兒使用,而且此改進容許將通用對象聲明爲函數或方法的參數。這裏是一個例子:測試

class MyClass {
    public $var = '';
}

class FirstChild extends MyClass {
    public $var = 'My name is Jim';
}
class SecondChild extends MyClass {
    public $var = 'My name is John';
}

$firstchild = new FirstChild;
$secondchild = new SecondChild;

function test(object $arg) {
    return $arg->var;
}

echo test($firstchild);

echo test($secondchild);

在這個例子中,咱們調用了兩次測試函數,每次調用都傳遞一個不一樣的對象。在之前的PHP版本中這是不可能的。code

對象返回類型聲明

若是參數類型聲明指定函數參數的預期類型,則返回類型聲明指定返回值的預期類型。對象

返回類型聲明指定了函數預期返回的變量的類型。接口

從PHP 7.2開始,咱們被容許爲對象數據類型使用返回類型聲明。這裏是一個例子:string

class MyClass {
    public $var = 'Hello World';
}

$myclass = new MyClass;

function test(MyClass $arg) : object {
    return $arg;
}

echo test($myclass)->var;

之前的PHP版本會致使如下致命錯誤:it

Fatal error: Uncaught TypeError: Return value of test() must be an instance of object, instance of MyClass returned in /app/index.php:10

固然,在PHP 7.2中,這個代碼會迴應'Hello World'。

參數類型寬限聲明

PHP目前不容許子類和它們的父類或接口之間的參數類型有任何差別。那是什麼意思?
考慮下面的代碼:

<?php
class MyClass {
    public function myFunction(array $myarray) { /* ... */ }
}

class MyChildClass extends MyClass {
    public function myFunction($myarray) { /* ... */ }
}

這裏咱們省略了子類中的參數類型。在PHP 7.0中,此代碼會產生如下警告:

Warning: Declaration of MyChildClass::myFunction($myarray) should be compatible with MyClass::myFunction(array $myarray) in %s on line 8

自PHP 7.2以來,咱們被容許在不破壞任何代碼的狀況下省略子類中的類型。這個建議將容許咱們升級類以在庫中使用類型提示,而不須要更新全部的子類。

在列表語法中尾隨逗號

數組中最後一項以後的尾隨逗號是PHP中的有效語法,有時爲了輕鬆附加新項目並避免因爲缺乏逗號而致使解析錯誤,鼓勵使用它。自PHP 7.2起,咱們被容許在 分組命名空間中使用尾隨逗號。

請參閱列表語法中的尾隨逗號以便更深刻地查看此RFC和一些代碼示例。

相關文章
相關標籤/搜索