php8.1发布,该版本带来了许多改进和新功能 枚举 使用枚举而不是一组常量并立即进行验证。 enum Status { case draft; case published; case archived; public function color(): string { return match($this) { Status::draft => 'grey', Status::published => 'green', Status::archived => 'red', }; } } 只读…