PHP 7.2新特性:參數型別宣告(附代碼)

來源:互聯網
上載者:User
php7.2版本具有新特性,功能和改進,可以讓我們編寫更好的代碼,下面的文章中我將介紹php7.2中的一個新的功能:參數型別宣告,話不多說,讓我們來具體看看本文內容。

參數型別宣告

從PHP 5開始,我們可以在函數的聲明中指定預期要傳遞的參數類型。如果給定值的類型不正確,那麼PHP將引發錯誤。參數型別宣告(也稱為類型提示)指定預期傳遞給函數或類方法的變數的類型。

來一個例子:

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版本中這是不可能的。

對象傳回型別聲明

如果參數型別宣告指定函數參數的預期類型,則傳回型別聲明指定傳回值的預期類型。

傳回型別聲明指定了函數預期返回的變數的類型。

從PHP 7.2開始,我們被允許為對象資料類型使用傳回型別聲明。這裡是一個例子:

class MyClass {    public $var = 'Hello World';}$myclass = new MyClass;function test(MyClass $arg) : object {    return $arg;}echo test($myclass)->var;

以前的PHP版本會導致以下致命錯誤:

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目前不允許子類和它們的父類或介面之間的參數類型有任何差異。那是什麼意思?
考慮下面的代碼:

<?phpclass 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起,我們被允許在 分組命名空間中使用尾隨逗號。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.