PHP 8.1.0 现已发布,该版本带来了许多改进和新功能。枚举使用枚举而不是一组常量并立即进行验证。enum Status{ case draft; case published; case archived; public function color(): string { return match($this)
Your requirements could not be resolved to an installable set of packages解决方法:composer install / update / require xxx 后添加--ignore-platform-reqs 或者 composer update --ignore-platform-reqs