Ai
2 Star 0 Fork 1

zms/hyperf-casts

forked from zlf/app-hyperf-casts 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
JoinIdCasts.php 663 Bytes
一键复制 编辑 原始数据 按行查看 历史
zms 提交于 2025-03-13 23:48 +08:00 . 3/13
<?php
declare(strict_types=1);
namespace Zms\HyperfCasts;
use Hyperf\Contract\CastsAttributes;
/**
* int类型观连转换器
* Class StrtotimeCasts
* @package Core\Casts
*/
class JoinIdCasts implements CastsAttributes
{
/**
* 取出分类信息,未设置或设置的0时返回空字符串代表没设置
* @return int|string
*/
public function get($model, $key, $value, $attributes)
{
$value = (int)$value;
return $value > 0 ? $value : '';
}
/**
* 把分类数据转int
* @return int
*/
public function set($model, $key, $value, $attributes)
{
return (int)$value;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zms-code/hyperf-casts.git
git@gitee.com:zms-code/hyperf-casts.git
zms-code
hyperf-casts
hyperf-casts
master

搜索帮助