online_state; if($state=='1'){ return '1'; } $value = strtotime($this->online_time); $int=time()-$value; if($int>300){ return '0'; }else{ return '1'; } } public function getOnlineTimeAttr($value){ $state=$this->online_state; if($state=='1'){ return date('Y-m-d H:i:s'); } if($value){ return $value; } return '-'; } public function getIsOnlineTextAttr($value){ $state=$this->online_state; if($state=='1'){ return '在线'; } $value = strtotime($this->online_time); $int=time()-$value; if($int>300){ return '离线'; }else{ return '在线'; } } }