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,返回數(shù)量
public function countCity($uid){
if($this->where('uid',$uid)->first()){
return $this->where('uid',$uid)->count();
}else{
return [];
}
}
//查詢?nèi)繑?shù)據(jù)
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;
}
}
//加條件,時間
//查詢用戶的認(rèn)購的城數(shù)
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"));
// 將日期轉(zhuǎn)換為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');
}
/**
* 根據(jù)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 [];
}
}
更多關(guān)于Laravel相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Laravel框架入門與進(jìn)階教程》、《php優(yōu)秀開發(fā)框架總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計入門教程》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》