>  기사  >  백엔드 개발  >  PHP Enum을 균일하게 관리하는 방법은 무엇입니까?

PHP Enum을 균일하게 관리하는 방법은 무엇입니까?

Guanhui
Guanhui앞으로
2020-06-19 18:04:342354검색

PHP Enum을 균일하게 관리하는 방법은 무엇입니까?

Install

composer require fangx/php-enum

Create

열거형 클래스를 생성하려면 ./vendor/bin/enum 명령을 사용하세요../vendor/bin/enum 命令创建一个枚举类.

./vendor/bin/enum FooEnum --enum="1=foo" --enum="b=bar" --path=Enums

该命令默认在 当前目录的 Enums 目录下创建一个 FooEnum.php 文件. 文件内容如下:

<?phpnamespace Enums;use Fangx\Enum\AbstractEnum;class FooEnum extends AbstractEnum{
    const FOO = "f", __FOO = "foo";
    const BAR = "b", __BAR = "bar";}

使用

枚举类默认继承 FangxEnumAbstractEnum. 可以静态调用以下方法:

  • toArray(Format $format = null, Filter $filter = null)
  • toJson(Format $format = null, Filter $filter = null)
  • desc($key, $default = &#39;Undefined&#39;)

获取所有的枚举值

<?phpclass FooEnum extends \Fangx\Enum\AbstractEnum{
    const FOO = &#39;f&#39;, __FOO = &#39;foo&#39;;
    const BAR = &#39;b&#39;, __BAR = &#39;bar&#39;;}/**
 * [&#39;f&#39; => 'foo', 'b' => 'bar']
 */FooEnum::toArray();

获取枚举值的描述信息

<?phpclass FooEnum extends \Fangx\Enum\AbstractEnum{
    const FOO = &#39;f&#39;, __FOO = &#39;foo&#39;;
    const BAR = &#39;b&#39;, __BAR = &#39;bar&#39;;}/**
 * "foo"
 */FooEnum::desc(&#39;f&#39;);/**
 * "bar"
 */FooEnum::desc(FooEnum::BAR);

使用格式来约束返回值

<?phpclass FooFormat implements \Fangx\Enum\Contracts\Format{
    public function parse(\Fangx\Enum\Contracts\Definition $definition): array
    {
        return [[&#39;key&#39; => $definition->getKey() , 'value' => $definition->getValue()]];
    }}class FooEnum extends \Fangx\Enum\AbstractEnum{
    const FOO = 'f', __FOO = 'foo';
    const BAR = 'b', __BAR = 'bar';}/**
 * [['key' => 'f', 'value' => 'foo'], ['key' => 'b', 'value' => 'bar'],]
 */$format = new FooFormat();FooEnum::toArray($format);

通过规则来过来过滤枚举值.

class FooFilter implements \Fangx\Enum\Contracts\Filter{
    public function __invoke(\Fangx\Enum\Contracts\Definition $definition)
    {
        return $definition->getKey() === 'f';
    }}/**
 * ['f' => 'foo']
 */$filter = new FooFilter();FooEnum::toArray(null, $filter);

使用自定义的集合来作为所有的枚举类型, 其他使用方法与 FooEnum
<?phpclass BarEnum extends \Fangx\Enum\AbstractEnum{
    public function all()
    {
        return [
            new \Fangx\Enum\Definition('f', 'foo'),
            new \Fangx\Enum\Definition('b', 'bar'),
        ];
    }}

이 명령은 다음과 같습니다. 기본적으로 현재 디렉터리의 Enums 디렉터리에 FooEnum.php 파일을 만듭니다. 파일 내용은 다음과 같습니다.

rrreee

다음과 같이 FangxEnumAbstractEnum에서 상속하려면

열거형 클래스를 사용하세요. 다음 메소드를 정적으로 호출할 수 있습니다: 🎜
  • toArray(Format $format = null, Filter $filter = null)
  • toJson( 형식 $format = null, 필터 $filter = null)
  • desc($key, $default = '정의되지 않음')

🎜🎜🎜모든 열거 값 가져오기🎜 🎜rrreee

🎜🎜🎜열거 값의 설명 정보 가져오기🎜🎜rrreee

🎜🎜형식을 사용하여 반환 값 제한🎜rrreee

🎜🎜Filter 규칙을 통해 열거 값.🎜rrreee

합 모든 열거 유형으로 사용하려면 사용자 정의 세트를 사용하고 다른 사용 방법은 FOOONUM .🎜Rrreee🎜 🎜🎜🎜🎜 권장 튜토리얼: "🎜Php🎜" 🎜

위 내용은 PHP Enum을 균일하게 관리하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 learnku.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제