您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關php中枚舉類的應用,文章內容質量較高,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
composer require fangx/php-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";}
枚舉類默認繼承 \Fangx\Enum\AbstractEnum
. 可以靜態調用以下方法:
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);
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中枚舉類的應用,看完之后是否有所收獲呢?如果想了解更多相關內容,歡迎關注億速云行業資訊,感謝各位的閱讀。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。