myclabs/php-enum 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

myclabs/php-enum

Composer 安装命令:

composer require myclabs/php-enum

包简介

PHP Enum implementation

关键字:

README 文档

README

GitHub Actions Latest Stable Version Total Downloads Psalm Shepherd

Maintenance for this project is supported via Tidelift.

Why?

First, and mainly, SplEnum is not integrated to PHP, you have to install the extension separately.

Using an enum instead of class constants provides the following advantages:

  • You can use an enum as a parameter type: function setAction(Action $action) {
  • You can use an enum as a return type: function getAction() : Action {
  • You can enrich the enum with methods (e.g. format, parse, …)
  • You can extend the enum to add new values (make your enum final to prevent it)
  • You can get a list of all the possible values (see below)

This Enum class is not intended to replace class constants, but only to be used when it makes sense.

Installation

composer require myclabs/php-enum

Declaration

use MyCLabs\Enum\Enum;

/**
 * Action enum
 *
 * @extends Enum<Action::*>
 */
final class Action extends Enum
{
    private const VIEW = 'view';
    private const EDIT = 'edit';
}

Usage

$action = Action::VIEW();

// or with a dynamic key:
$action = Action::$key();
// or with a dynamic value:
$action = Action::from($value);
// or
$action = new Action($value);

As you can see, static methods are automatically implemented to provide quick access to an enum value.

One advantage over using class constants is to be able to use an enum as a parameter type:

function setAction(Action $action) {
    // ...
}

Documentation

  • __construct() The constructor checks that the value exist in the enum
  • __toString() You can echo $myValue, it will display the enum value (value of the constant)
  • getValue() Returns the current value of the enum
  • getKey() Returns the key of the current value on Enum
  • equals() Tests whether enum instances are equal (returns true if enum values are equal, false otherwise)

Static methods:

  • from() Creates an Enum instance, checking that the value exist in the enum
  • toArray() method Returns all possible values as an array (constant name in key, constant value in value)
  • keys() Returns the names (keys) of all constants in the Enum class
  • values() Returns instances of the Enum class of all Enum constants (constant name in key, Enum instance in value)
  • isValid() Check if tested value is valid on enum set
  • isValidKey() Check if tested key is valid on enum set
  • assertValidValue() Assert the value is valid on enum set, throwing exception otherwise
  • search() Return key for searched value

Static methods

final class Action extends Enum
{
    private const VIEW = 'view';
    private const EDIT = 'edit';
}

// Static method:
$action = Action::VIEW();
$action = Action::EDIT();

Static method helpers are implemented using __callStatic().

If you care about IDE autocompletion, you can either implement the static methods yourself:

final class Action extends Enum
{
    private const VIEW = 'view';

    /**
     * @return Action
     */
    public static function VIEW() {
        return new Action(self::VIEW);
    }
}

or you can use phpdoc (this is supported in PhpStorm for example):

/**
 * @method static Action VIEW()
 * @method static Action EDIT()
 */
final class Action extends Enum
{
    private const VIEW = 'view';
    private const EDIT = 'edit';
}

Native enums and migration

Native enum arrived to PHP in version 8.1: https://www.php.net/enumerations
If your project is running PHP 8.1+ or your library has it as a minimum requirement you should use it instead of this library.

When migrating from myclabs/php-enum, the effort should be small if the usage was in the recommended way:

  • private constants
  • final classes
  • no method overridden

Changes for migration:

  • Class definition should be changed from
/**
 * @method static Action VIEW()
 * @method static Action EDIT()
 */
final class Action extends Enum
{
    private const VIEW = 'view';
    private const EDIT = 'edit';
}

to

enum Action: string
{
    case VIEW = 'view';
    case EDIT = 'edit';
}

All places where the class was used as a type will continue to work.

Usages and the change needed:

Operation myclabs/php-enum native enum
Obtain an instance will change from $enumCase = Action::VIEW() $enumCase = Action::VIEW
Create an enum from a backed value $enumCase = new Action('view') $enumCase = Action::from('view')
Get the backed value of the enum instance $enumCase->getValue() $enumCase->value
Compare two enum instances $enumCase1 == $enumCase2
or
$enumCase1->equals($enumCase2)
$enumCase1 === $enumCase2
Get the key/name of the enum instance $enumCase->getKey() $enumCase->name
Get a list of all the possible instances of the enum Action::values() Action::cases()
Get a map of possible instances of the enum mapped by name Action::values() array_combine(array_map(fn($case) => $case->name, Action::cases()), Action::cases())
or
(new ReflectionEnum(Action::class))->getConstants()
Get a list of all possible names of the enum Action::keys() array_map(fn($case) => $case->name, Action::cases())
Get a list of all possible backed values of the enum Action::toArray() array_map(fn($case) => $case->value, Action::cases())
Get a map of possible backed values of the enum mapped by name Action::toArray() array_combine(array_map(fn($case) => $case->name, Action::cases()), array_map(fn($case) => $case->value, Action::cases()))
or
array_map(fn($case) => $case->value, (new ReflectionEnum(Action::class))->getConstants()))

Related projects

myclabs/php-enum 适用场景与选型建议

myclabs/php-enum 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 235.14M 次下载、GitHub Stars 达 2.73k, 最近一次更新时间为 2013 年 03 月 20 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「enum」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 myclabs/php-enum 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 myclabs/php-enum 我们能提供哪些服务?
定制开发 / 二次开发

基于 myclabs/php-enum 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 235.14M
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2762
  • 点击次数: 22
  • 依赖项目数: 718
  • 推荐数: 4

GitHub 信息

  • Stars: 2729
  • Watchers: 29
  • Forks: 128
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2013-03-20