# enum **Repository Path**: a503221219/enum ## Basic Information - **Project Name**: enum - **Description**: 简单的枚举,方便快捷 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-15 - **Last Updated**: 2022-07-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 1. 创建枚举文件 ```php '会员', self::VIP => '超级会员' ]; } ``` 2. 获取所有(键值对) ```php \UserType::asSelectArray(); ``` 3. 获取label ```php \UserType::getLabel($value); ``` 4. 判断是否包含 ```php \UserType::in($needle, $haystack = null); ```