atymic/laravel-dateinterval-cast
Composer 安装命令:
composer require atymic/laravel-dateinterval-cast
包简介
README 文档
README
Laravel has built-in casting for date & datetime types, but if you want to use ISO 8061 durations with the native
DateInterval class, or Carbon's CarbonInterval you're out of luck.
This package provides two custom casts (for DateInterval and CarbonInterval respectively) using Laravel 7.x/8.x's custom
casts feature.
Installation
composer require atymic/laravel-dateinterval-cast
Using this package
In your model's $casts, assign the property you wish to enable casting on to either of the casts provided by the package.
You should use a varchar/string field in your database table.
class TestModel extends Model { /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'is_xyz' => 'boolean', 'date_interval' => DateIntervalCast::class, 'carbon_interval' => CarbonIntervalCast::class, ]; }
The property on the model will then be cast to an interval object, and saved to the database as a ISO 8061 duration string. If you try to assign an invalid duration (or the database table contains one, and you use a getter) an exception is thrown.
$model = new TestModel(); $model->carbon_interval = now()->subHours(3)->diffAsCarbonInterval(); $model->save(); // Saved as `P3H` $model->fresh(); $model->carbon_interval; // Instance of `CarbonInterval` $model->carbon_interval->forHumans(); // prints '3 hours ago' try { $model->carbon_interval = 'not_a_iso_period'; } catch (\Atymic\DateIntervalCast\Exception\InvalidIsoDuration $e) { // Exception thrown if you try to assign an invalid duration }
Contributing
Contributions welcome :) Please create a PR and i'll review/merge it.
Licence
MIT
atymic/laravel-dateinterval-cast 适用场景与选型建议
atymic/laravel-dateinterval-cast 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 505 次下载、GitHub Stars 达 12, 最近一次更新时间为 2020 年 02 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「eloquent」 「dateinterval」 「cast」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 atymic/laravel-dateinterval-cast 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 atymic/laravel-dateinterval-cast 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 atymic/laravel-dateinterval-cast 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Enhanced DateTime, DateTimeImmutable and DateInterval objects
Adds DateInterval to Doctrine DBAL and ORM
A Laravel Eloquent model trait for translatable resource
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Help to manage meta data on Laravel Eloquent model
A package to cast json fields, each sub-keys is castable
统计信息
- 总下载量: 505
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-02-27