litgroup/enumerable
最新稳定版本:v0.8.0
Composer 安装命令:
composer require litgroup/enumerable
包简介
Implementation of the enumerable type for PHP.
关键字:
README 文档
README
Library provides support of enumerable classes for PHP.
Installation
Install via composer:
composer require litgroup/enumerable:^0.8.0
Example of usage
Definition
- Create
finalclass, which extendsEnumerable; - For each variant of values create a static method, which
will creates an instance of value. For this purpose your method
must call
Enumerable::createEnum()with some index of value.
Note:
- Enumerable class must be
final!- Index can be of type
stringorint.
Enum definition example:
namespace Acme; use LitGroup\Enumerable\Enumerable; final class ColorEnum extends Enumerable { /** * @return self */ public static function red() { return self::createEnum('red'); } /** * @return self */ public static function green() { return self::createEnum('green'); } /** * @return self */ public static function blue() { return self::createEnum('blue'); } }
Equality/Identity checking
You can use enumerable values in equality/identity expressions:
ColorEnum::red() == ColorEnum::red() // => true ColorEnum::red() === ColorEnum::red() // => true ColorEnum::red() == ColorEnum::blue() // => false ColorEnum::red() === ColorEnum::blue() // => false
Note: Enumerables works as runtime constants. Therefor enumerable values can be checked on identity. And we recommend to use check on identity (
===) instesd of equality (==) if possible.
Usage in switch-case statement
$color = ColorEnum::green(); switch ($color) { case ColorEnum::red(): echo "Red!\n"; break; case ColorEnum::green(): echo "Green!\n"; break; case ColorEnum::blue(): echo "Blue!\n"; break; } // "Green!" will be printed
Serialization and Persistence
Enumerable works as runtime-constant. Enumerable type cannot be serialized.
If you need to store representation of enumerable in a database or send
it via an API you can use index of enumerable value as representation.
$enum->getRawValue();
To restore an instance of enumerable type by index from database or
from API-request you can use static method getValueOf() on the concrete
enum-class.
$colorIndex = getFromDatabase(/* something */); $enum = ColorEnum::getValueOf($colorIndex);
If you need to get all values of enumerable type, use static method
getValues() on the concrete enum-class.
ColorEnum::getValues(); // => Returns array of ColorEnum with index as key
Extensibility
Instances of your enumerable classes can have additional behaviour if it needed.
But you cannot define any public static methods with behaviour. Public static
methods used only for creation of values.
Note: You cannot define any
public staticmethods with behaviour. Public static methods used only for creation of values.
Example:
final class MergeRequestStatus extends Enumerable { public static function open() { return self::createEnum('open'); } public static function approved() { return self::createEnum('approved'); } public static function merged() { return self::createEnum('merged'); } public static function declined() { return self::createEnum('declined'); } /** * Returns true if status is final. * * @return bool */ public function isFinal() { return $this === self::merged() || $this === self::declined(); } }
Run tests
composer install ./tests.sh
LICENSE
See LICENSE file.
litgroup/enumerable 适用场景与选型建议
litgroup/enumerable 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 70.87k 次下载、GitHub Stars 达 5, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「enum」 「enumerable」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 litgroup/enumerable 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 litgroup/enumerable 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 litgroup/enumerable 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Enum type behavior for Yii2 based on class constants
A PHP Abstract Enum Class
Compatibility layer for emulating enumerations in PHP < 8.1 and native enumerations in PHP >= 8.1
Enum type behavior and helper for Yii2, for PostgreSQL only
Litgroup enumerable doctrine type
PHP Enums
统计信息
- 总下载量: 70.87k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 12
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 未知