|
本帖最后由 lxylxy888666 于 2012-12-18 14:26 编辑
要写个demo,想同时查询数据和分页数
用了下clone
PHP复制代码
/**
* 查询数据
* @param string $md5
* @param int $offset 起始位
* @param int $limit
*
* @return array
*/
function get_limit ($md5, $offset, $limit=5)
{
//起始位置处理
$offset = (($offset>0 ? $offset : 1) - 1) * $limit;
//条件初始化
$where = array('state'=>0);
//条件
if( $md5 ) {
$where['md5'] = $md5;
}
$this->db->where( $where );
//在order、group或limit前查询总数
$db = clone ($this->db);
$total = $this->db->count_all_results('class');
echo $this->db->last_query();
echo '<hr/>';
$this->db = $db;
$this->db->order_by('id desc');
$this->db->limit($limit, $offset);
$query = $this->db->get('class');
$data = $query->result_array();
//sql调试方法
echo $this->db->last_query();
//return 数据和总数
return array('data'=>$data, 'total'=>$total);
}
复制代码
show:
- SELECT COUNT(*) AS numrows FROM classWHERE state = 0AND md5 = '111'
- SELECT * FROM class WHERE state = 0 AND md5 = '111'ORDER BY id desc LIMIT 5
复制代码 看下是你想要的么。
|
|