PHP 8 釋出了

LW1314QS發表於2020-11-29

PHP 8

PHP 8.0 是 PHP 語言的一個主版本更新。

它包含了很多新功能與優化項, 包括命名引數、聯合型別、註解、構造器屬性提升、match 表示式、nullsafe 運算子、JIT,並改進了型別系統、錯誤處理、語法一致性。

1. 命名引數 RFC

在php7 中:

htmlspecialchars($string, ENT_COMPAT | ENT_HTML401, 'UTF-8', false);

在php8 中:

htmlspecialchars($string, double_encode: false);
  • 僅僅指定必填引數,跳過可選引數。
  • 引數的順序無關、自己就是文件(self-documented)

2. 註解 RFC

在php7 中:

class PostsController
{
    /**
     * @Route("/api/posts/{id}", methods={"GET"})
     */
    public function get($id) { /* ... */ }
}

在php8 中:

class PostsController
{
    #[Route("/api/posts/{id}", methods: ["GET"])]
    public function get($id) { /* ... */ }
}

  • 現在可以用 PHP 原生語法來使用結構化的後設資料,而非 PHPDoc 宣告。

3. 構造器屬性提升 RFC 文件

在php7 中:

class Point {
  public float $x;
  public float $y;
  public float $z;
  public function __construct(
    float $x = 0.0,
    float $y = 0.0,
    float $z = 0.0,
  ) {
    $this->x = $x;
    $this->y = $y;
    $this->z = $z;
  }
}

在php8 中:

class Point {
  public function __construct(
    public float $x = 0.0,
    public float $y = 0.0,
    public float $z = 0.0,
  ) {}
}

  • 更少的樣板程式碼來定義並初始化屬性。

4. 聯合型別 RFC 文件

在php7 中:

class Number {
  /** @var int|float */
  private $number;
  /**
   * @param float|int $number
   */
  public function __construct($number) {
    $this->number = $number;
  }
}
new Number('NaN'); // Ok

在php8 中:

class Number {
  public function __construct(
    private int|float $number
  ) {}
}
new Number('NaN'); // TypeError

  • 相對於以前的 PHPDoc 宣告型別的組合, 現在可以用原生支援的聯合型別宣告取而代之,可在實際執行中驗證。

5. Match 表示式 RFC 文件

在php7 中:

switch (8.0) {
  case '8.0':
    $result = "Oh no!";
    break;
  case 8.0:
    $result = "This is what I expected";
    break;
}
echo $result;
//> Oh no!

在php8 中:

echo match (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;

  • 現在可以用新的 nullsafe 運算子鏈式呼叫,而不需要條件檢查 null。 如果鏈條中的一個元素失敗了,整個鏈條會中止並認定為 Null。

7. 字串與數字的比較更符合邏輯 RFC

在php7 中:

0 == 'foobar' // true

在php8 中:

0 == 'foobar' // false 

  • PHP 8 比較數字字串(numeric string)時,會按數字進行比較。 不是數字字串時,將數字轉化為字串,按字串比較。

8. 內部函式型別錯誤的一致性。 RFC

在php7 中:

strlen([]); // Warning: strlen() expects parameter 1 to be string, array given
array_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 given
array_chunk([], -1); // ValueError: array_chunk(): Argument #2 ($length) must be greater than 0

  • 現在大多數內部函式在引數驗證失敗時丟擲 Error 級異常。

9. 即時編譯

PHP 8 引入了兩個即時編譯引擎。 Tracing JIT 在兩個中更有潛力,它在綜合基準測試中顯示了三倍的效能, 並在某些長時間執行的程式中顯示了 1.5-2 倍的效能改進。 典型的應用效能則和 PHP 7.4 不相上下。

關於 JIT 對 PHP 8 效能的貢獻

image

10. 型別系統與錯誤處理的改進

  • 算術/位運算子更嚴格的型別檢測 RFC
  • Abstract trait 方法的驗證 RFC
  • 確保魔術方法簽名正確 RFC
  • PHP 引擎 warning 警告的重新分類 RFC
  • 不相容的方法簽名導致 Fatal 錯誤 RFC
  • 操作符 @ 不再抑制 fatal 錯誤。
  • 私有方法繼承 RFC
  • Mixed 型別 RFC
  • Static 返回型別 RFC
  • 內部函式的型別 Email thread
  • 擴充套件 Curl、 Gd、 Sockets、 OpenSSL、 XMLWriter、 XML 以 Opaque 物件替換 resource。

11. 其他語法調整和改進

  • 允許引數列表中的末尾逗號 RFC、 閉包 use 列表中的末尾逗號 RFC
  • 無捕獲的 catche RFC
  • 變數語法的調整 RFC
  • Namespace 名稱作為單個 token RFC
  • 現在 throw 是一個表示式 RFC
  • 允許物件的 ::class RFC

12. 新的類、介面、函式

13. 幾個棄用

在 PHP 7. * 的開發期間,新增了幾個棄用版本,這些棄用已於 PHP 8 最終確定。

PHP 7.2 中的棄用

PHP 7.3 中的棄用

PHP 7.4 中的棄用

總結:以上就是這篇文章的全部內容了。

相關文章