原译PHP 8.2 新特性
PHP 8.2 将于2022 年 12 月 8 日发布。在本文中,我们将逐一介绍所有新特性、性能改进、更改和弃用。
只读类RFC
PHP 8.1 中引入了只读属性。此 RFC 构建在它们之上,并添加了语法糖以使所有类属性同时变为只读。代替这样写:
class Post
{
public function __construct(
public readonly string $title,
public readonly Author $author,
public readonly string $body
…