laravel 框架在model层的增删改查

本文档详细介绍了如何在Laravel框架的Model层进行增删改查操作,包括添加记录、单条查找、计数、获取所有数据、更新信息以及根据特定条件查询。示例代码涵盖基本操作和复杂查询,如时间范围筛选。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

    protected $table = 'user_city';
    public $timestamps = false;


    //添加 返回id
    public function cityadd($data)
    {
        return $this->insertGetId($data);
    }

//单条查找

 public function getfind($id)
    {
        if($this->where('id',$id)->first()){
            return $this->where('id',$id)->first()->toArray();
        }else{
            return [];
        }

    }

//查询用户有几个uid,返回数量
    public function countCity($uid){
		if($this->where('uid',$uid)->first()){
			return $this->where('uid',$uid)->count();
		}else{
			return [];
		}
        

	}      



//查询全部数据

 public function getAll()
    {
		return $this->get()->toArray();

    }     

	  /**
     * 修改管理员信息
     * @param $id
     * @param $data
     * @return bool
     */
    public function upAdmin($id,$data)
    {
        if($this->find($id)){
            return $this->where('id',$id)->update($data);
        }else{
            return false;
        }

    }

//加条件,时间

//查询用户的认购的城数
    public function buy_num($uid){
		$startDate = date('Y-m-01', strtotime(date("Y-m-d")));
        $endDate = date('Y-m-d', strtotime("$startDate +1 month -1 day"));
        // 将日期转换为Unix时间戳
        $endDate=$endDate." 22:59:59";
        $startDateStr = strtotime($startDate);
        $endtDateStr = strtotime($endDate);
 return $this->where('uid',$uid)->where('buy_type',1)->whereBetween('create_time', array($startDateStr,$endtDateStr))->sum('buy_num');
    }

 /**
     * 根据id查找城池信息 只返回某个字段的值
     * @param $id
     * @return array
     */
    public function getCityName($id)
    {
        if($this->where('city_id',$id)->first()){
            return $this->where('city_id',$id)->lists('city_name')[0];
        }else{
            return [];
        }
    }

                                                    


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值