PHP 8.0 是 PHP 語言的一個主版本更新窄赋。
它包含了很多新功能與優(yōu)化項拷淘, 包括命名參數(shù)、聯(lián)合類型性锭、注解孵班、構(gòu)造器屬性提升涉兽、match 表達式、nullsafe 運算符篙程、JIT枷畏,并改進了類型系統(tǒng)、錯誤處理虱饿、語法一致性拥诡。
1. 命名參數(shù)?RFC
在php7 中:
htmlspecialchars($string,ENT_COMPAT|ENT_HTML401,'UTF-8',false);
在php8 中:
htmlspecialchars($string, double_encode: false);
僅僅指定必填參數(shù),跳過可選參數(shù)氮发。
參數(shù)的順序無關(guān)渴肉、自己就是文檔(self-documented)
2. 注解?RFC
在php7 中:
classPostsController{/**? ? * @Route("/api/posts/{id}", methods={"GET"})? ? */publicfunctionget($id){/* ... */}}
在php8 中:
classPostsController{#[Route("/api/posts/{id}", methods: ["GET"])]publicfunctionget($id){/* ... */}}
現(xiàn)在可以用 PHP 原生語法來使用結(jié)構(gòu)化的元數(shù)據(jù),而非 PHPDoc 聲明爽冕。
3. 構(gòu)造器屬性提升?RFC
在php7 中:
classPoint{publicfloat$x;publicfloat$y;publicfloat$z;publicfunction__construct(float$x=0.0,float$y=0.0,float$z=0.0,){$this->x=$x;$this->y=$y;$this->z=$z;}}
在php8 中:
classPoint{publicfunction__construct(publicfloat$x=0.0,publicfloat$y=0.0,publicfloat$z=0.0,){}}
更少的樣板代碼來定義并初始化屬性仇祭。
4. 聯(lián)合類型?RFC
在php7 中:
classNumber{/** @var int|float */private$number;/**? * @param float|int $number? */publicfunction__construct($number){$this->number=$number;}}newNumber('NaN');// Ok
在php8 中:
classNumber{publicfunction__construct(privateint|float$number){}}newNumber('NaN');// TypeError
相對于以前的 PHPDoc 聲明類型的組合, 現(xiàn)在可以用原生支持的聯(lián)合類型聲明取而代之颈畸,可在實際運行中驗證乌奇。
5. Match 表達式?RFC 文檔
在php7 中:
switch(8.0){case'8.0':$result="Oh no!";break;case8.0:$result="This is what I expected";break;}echo$result;//> Oh no!
在php8 中:
echomatch(8.0){'8.0'=>"Oh no!",8.0=>"This is what I expected",};//> This is what I expected
新的 match 類似于 switch,并具有以下功能:
Match 是一個表達式眯娱,它可以儲存到變量中亦可以直接返回礁苗。
Match 分支僅支持單行,它不需要一個 break; 語句徙缴。
Match 使用嚴格比較试伙。
6. Nullsafe 運算符?RFC
在php7 中:
$country=null;if($session!==null){$user=$session->user;if($user!==null){$address=$user->getAddress();if($address!==null){$country=$address->country;}}}
在php8 中:
$country=$session?->user?->getAddress()?->country;
現(xiàn)在可以用新的 nullsafe 運算符鏈式調(diào)用,而不需要條件檢查 null娜搂。 如果鏈條中的一個元素失敗了迁霎,整個鏈條會中止并認定為 Null。
7. 字符串與數(shù)字的比較更符合邏輯?RFC
在php7 中:
0=='foobar'// true
在php8 中:
0=='foobar'// false
PHP 8 比較數(shù)字字符串(numeric string)時百宇,會按數(shù)字進行比較。 不是數(shù)字字符串時秘豹,將數(shù)字轉(zhuǎn)化為字符串携御,按字符串比較。
8. 內(nèi)部函數(shù)類型錯誤的一致性。?RFC
在php7 中:
strlen([]);// Warning: strlen() expects parameter 1 to be string, array givenarray_chunk([],-1);// Warning: array_chunk(): Size parameter expected to be greater than 0
在php8 中:
strlen([]);// TypeError: strlen(): Argument #1 ($str) must be of type string, array givenarray_chunk([],-1);// ValueError: array_chunk(): Argument #2 ($length) must be greater than 0
現(xiàn)在大多數(shù)內(nèi)部函數(shù)在參數(shù)驗證失敗時拋出 Error 級異常啄刹。
9. 即時編譯
PHP 8 引入了兩個即時編譯引擎涮坐。 Tracing JIT 在兩個中更有潛力,它在綜合基準測試中顯示了三倍的性能誓军, 并在某些長時間運行的程序中顯示了 1.5-2 倍的性能改進袱讹。 典型的應(yīng)用性能則和 PHP 7.4 不相上下。
關(guān)于 JIT 對 PHP 8 性能的貢獻
10. 類型系統(tǒng)與錯誤處理的改進
算術(shù)/位運算符更嚴格的類型檢測?RFC
Abstract trait 方法的驗證?RFC
確保魔術(shù)方法簽名正確?RFC
PHP 引擎 warning 警告的重新分類?RFC
不兼容的方法簽名導(dǎo)致 Fatal 錯誤?RFC
操作符 @ 不再抑制 fatal 錯誤昵时。
私有方法繼承?RFC
Mixed 類型?RFC
Static 返回類型?RFC
內(nèi)部函數(shù)的類型?Email thread
擴展?Curl捷雕、?Gd、?Sockets壹甥、?OpenSSL救巷、?XMLWriter、?XML?以 Opaque 對象替換 resource句柠。
11. 其他語法調(diào)整和改進
允許參數(shù)列表中的末尾逗號?RFC浦译、 閉包 use 列表中的末尾逗號?RFC
無捕獲的 catche?RFC
變量語法的調(diào)整?RFC
Namespace 名稱作為單個 token?RFC
現(xiàn)在 throw 是一個表達式?RFC
允許對象的 ::class?RFC
12. 新的類、接口溯职、函數(shù)
Weak Map?類
Stringable?接口
str_contains()精盅、?str_starts_with()、str_ends_with()
token_get_all()?對象實現(xiàn)
13. 幾個棄用
在 PHP 7. * 的開發(fā)期間谜酒,添加了幾個棄用版本渤弛,這些棄用已于 PHP 8 最終確定。
PHP 7.2?中的棄用
PHP 7.3?中的棄用
PHP 7.4?中的棄用
總結(jié):以上就是這篇文章的全部內(nèi)容了甚带。