geega/php-micro

此包的最新版本(0.6.0)没有提供许可证信息。

简单的微PHP框架

维护者

详细信息

github.com/geega/php-micro

源代码

安装: 43

依赖: 0

建议: 0

安全: 0

星标: 0

关注者: 1

分支: 0

0.6.0 2023-07-22 20:08 UTC

This package is auto-updated.

Last update: 2024-09-13 09:26:03 UTC


README

简单的PHP微框架

注意:此包正在开发中。同时没有测试。请自行承担风险使用。

DTO

了解更多 https://github.com/spatie/data-transfer-object/blob/1.14.1/README.md

枚举

类使用示例

class StatusEnum extends Enum
{

   const ON = 1;
   const OFF = 0;


   public static function getLabels()
    {
        return [
           self::ON   => 'Turn on',
           self::OFF   => 'Turn off',
        ];
    }
}