BaseModel.php 1.3 KB
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2020/11/10
 * Time: 10:31
 */

namespace app\common\model;


use think\Model;

class BaseModel extends Model
{
    // 开启自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';
    // 定义时间戳字段名
    protected $createTime = 'createtime';
    protected $updateTime = 'updatetime';

    /**
     * @param $value 修改图片
     * @return mixed 返回转换后的时间格式
     */
    public function getImageAttr($value)
    {
        if ($value){
            return cdnurl($value,true);
        }
        return $value;
    }

    /**
     * @param $value 修改图片
     * @return mixed 返回转换后的时间格式
     */
    public function getImagesAttr($value,$data)
    {
        $arr = explode(',',$value);
        foreach ($arr as $key => $val){
            $arr[$key] = cdnurl($val);
        }
        return $arr;
    }

    /**
     * @param $value 修改增加时间
     * @return mixed 返回转换后的时间格式
     */
    public function getCreatetimeAttr($value)
    {
        return datetime($value);
    }

    /**
     * @param $value 修改更新时间
     * @return mixed 返回转换后的时间格式
     */
    public function getUpdatetimeAttr($value)
    {
        return datetime($value);
    }

}