//公共時(shí)間方法
public function invitationTime($type,$v){
if($type==1){ //今天
$beginToday = mktime(0,0,0,date('m'),date('d'),date('Y'));
$endToday = mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1;
$where = "superior REGEXP '^{$v['id']}_' AND createtime between ".$beginToday." AND ".$endToday."";
}
if($type==2){ //昨天
$beginYesterday = mktime(0,0,0,date('m'),date('d')-1,date('Y'));
$endYesterday = mktime(0,0,0,date('m'),date('d'),date('Y'))-1;
$where = "superior REGEXP '^{$v['id']}_' AND createtime between ".$beginYesterday." AND ".$endYesterday."";
}
if($type==3){ //本周
$beginWeek=mktime(0,0,0,date('m'),date('d')-date('w')+1,date('Y'));
$endWeek=mktime(23,59,59,date('m'),date('d')-date('w')+7,date('Y'));
$where = "superior REGEXP '^{$v['id']}_' AND createtime between ".$beginWeek." AND ".$endWeek."";
}
if($type==4){ //上周
$beginLastweek=mktime(0,0,0,date('m'),date('d')-date('w')+1-7,date('Y'));
$endLastweek=mktime(23,59,59,date('m'),date('d')-date('w')+7-7,date('Y'));
$where = "superior REGEXP '^{$v['id']}_' AND createtime between ".$beginLastweek." AND ".$endLastweek."";
}
if($type==5){ //本月
$beginThismonth=mktime(0,0,0,date('m'),1,date('Y'));
$endThismonth=mktime(23,59,59,date('m'),date('t'),date('Y'));
$where = "superior REGEXP '^{$v['id']}_' AND createtime between ".$beginThismonth." AND ".$endThismonth."";
}
if($type==6){ //上月
$beginLastmonth=strtotime(date('Y-m-01 00:00:00',strtotime('-1 month')));
$endLastmonth=strtotime(date("Y-m-d 23:59:59", strtotime(-date('d').'day')));
$where = "superior REGEXP '^{$v['id']}_' AND createtime between ".$beginLastmonth." AND ".$endLastmonth."";
}
return $where;
}
public function invitation($appId,$type){
$arr = db("表明")->field("id,superior,avatar,nickname")
->where('superior=0')
->select();
foreach($arr as $k=>$v){
$where = self::invitationTime($type,$v);
$arr[$k]['count'] = db("表明")
->where($where)
->count();
}
foreach($arr as $key=>$val){
if($val['count']==0){
unset($arr[$key]);
}else{
if($val['avatar']){
$arr[$key]['avatar'] = cdnurl($val['avatar'],true);
}
$sort[] = $val['count'];
}
}
if(!empty($arr)){
//排序
array_multisort($sort,SORT_DESC,$arr);
$list = array_slice($arr,0,10);
}
return $list;
}
文章標(biāo)題:php數(shù)組排序且取數(shù)組條數(shù)
URL標(biāo)題:http://jinyejixie.com/article28/pddejp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、Google、全網(wǎng)營(yíng)銷推廣、App開發(fā)、用戶體驗(yàn)、網(wǎng)站營(yíng)銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)