我正在学习codeigniter并有一个问题。代码来自http://www.devshed.com/c/a/PHP/Paginating-Database-Records-with-the-Code-Igniter-PHP-Framework/
以下是模型和控制器。它没有定义$ row但它仍然有效。 (原来有错字,所以我修好了。)
Q1。 $ row来自哪里? Q2。你能解释一下get('users',5,$ rows);?用户必须是sql中的表,并且限制为5,但为什么我需要$ rows?
在模特中,
// get 5 rows at a time
function getUsers($row)
{
$query=$this->db->get('users',5,$row);
if($query->num_rows()>0)
{
// return result set as an associative array
return $query->result_array();
}
}
在控制器中,
$data['users']=$this->Users_model->getUsers($row);
以下是完整的代码。
Users_model.php
<?php
class Users_model extends Model
{
function Users()
{
// call the Model constructor
parent::Model();
// load database class and connect to MySQL
// $this->load->database();
}
function getAllUsers()
{
$query=$this->db->get('users');
if($query->num_rows()>0)
{
// return result set as an associative array
return $query->result_array();
}
}
function getUsersWhere($field,$param)
{
$this->db->where($field,$param);
$query=$this->db->get('users');
// return result set as an associative array
return $query->result_array();
}
// get 5 rows at a time
function getUsers($row)
{
$query=$this->db->get('users',5,$row);
if($query->num_rows()>0)
{
// return result set as an associative array
return $query->result_array();
}
}
// get total number of users
function getNumUsers()
{
return $this->db->count_all('users');
}
}
以下是控制器的users.php。
<?php
class Users extends Controller{
function Users(){
// load controller parent
parent::Controller();
// load 'Users' model
$this->load->model('Users_model');
}
function display($row=0){
// load pagination library
$this->load->library('pagination');
// set pagination parameters
$config['base_url']='http://127.0.0.1/ci_day4/index.php/users/display/';
$config['total_rows']=$this->Users_model->getNumUsers();
$config['per_page']='5';
$this->pagination->initialize($config);
// store data for being displayed on view file
$data['users']=$this->Users_model->getUsers($row);
$data['title']='Displaying user data';
$data['header']='User List';
$data['links']=$this->pagination->create_links();
// load 'testview' view
$this->load->view('users_view',$data);
}
}
答案 0 :(得分:1)
$ row是Controller的显示方法中默认值为0的参数。
第二个和第三个参数是限制和偏移(见这里:http://codeigniter.com/user_guide/database/active_record.html)。因此第二个参数(limit)定义返回多少行(max),第三个参数(offset)定义结果集中的哪一行开始。因此,例如,如果您有10行并将限制设置为5,则偏移量0将返回前5,偏移量5将返回下一个5(第二页)行。
显示方法的参数来自地址,它是/ display /之后的一段(见这里:http://codeigniter.com/user_guide/general/controllers.html#passinguri)。
哦,谢谢你指着我这个框架,看起来很漂亮,前段时间有人问我这样的事情,现在我知道了;)。