溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php中枚舉類的應(yīng)用

發(fā)布時間:2020-06-22 17:49:08 來源:億速云 閱讀:289 作者:Leah 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)php中枚舉類的應(yīng)用,文章內(nèi)容質(zhì)量較高,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

安裝

composer require fangx/php-enum

創(chuàng)建

使用 ./vendor/bin/enum 命令創(chuàng)建一個枚舉類.

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

該命令默認(rèn)在 當(dāng)前目錄的 Enums 目錄下創(chuàng)建一個 FooEnum.php 文件. 文件內(nèi)容如下:

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

使用

枚舉類默認(rèn)繼承 \Fangx\Enum\AbstractEnum. 可以靜態(tài)調(diào)用以下方法:

  • toArray(Format $format = null, Filter $filter = null)
  • toJson(Format $format = null, Filter $filter = null)
  • desc($key, $default = 'Undefined')

獲取所有的枚舉值

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

獲取枚舉值的描述信息

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

使用格式來約束返回值

<?phpclass FooFormat implements \Fangx\Enum\Contracts\Format{
    public function parse(\Fangx\Enum\Contracts\Definition $definition): array
    {
        return [['key' => $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);

通過規(guī)則來過來過濾枚舉值.

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'),
        ];
    }}

以上就是php中枚舉類的應(yīng)用,看完之后是否有所收獲呢?如果想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊,感謝各位的閱讀。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI