本篇文章主要介紹PHP無限迴圈擷取MySQL資料的方法,感興趣的朋友參考下,希望對大家有所協助。
具體如下:
public function get_data($limit){ $sql="select * from ((select id,name from `mytable` limit {$limit},10) union all (select id,name from `mytable` limit 0,10)) as test limit 0,10"; return $this->query($sql); }
上述sql語句通過mysql的union all方法,把兩個集合拼接到一起,並取前十條資料。
public function getCount(){//擷取資料的條數 $sql="select count(id) as t from `mytable`"; return $this->query($sql); }
下一步在控制器中擷取資料,並給ajax提供資料介面。
//測試資料庫無限迴圈取資料 public function getInfiniteData(){ //使用者點擊數 $page = $_GET['click']; //每次展示條數 $pagesize = 10; //擷取總條數 $total = $this->Mydemo->get_count(); $t = $total[0][0]['t']; //算出每次點擊的其起始位置 $limit = (($page - 1)*$pagesize)%$t; $data = $this->Mydemo->get_data($limit); if (!empty($data)) { //轉換為二維數組 $list = []; foreach ($data as $key => $v) { $list[$key] = $data[$key][0]; } $info['msg'] = $list; $info['code'] = '001'; }else{ $info['code'] = '002'; $info['msg'] = '暫無資料'; } echo json_encode($info,JSON_UNESCAPED_UNICODE);die; }