首页 > 开发 > PHP > 正文

codeigniter实现get分页的方法

2024-05-04 23:37:37
字体:
来源:转载
供稿:网友

这篇文章主要介绍了codeigniter实现get分页的方法,涉及使用codeigniter框架查询数据量及针对结果集进行get方法分页的相关技巧,非常简单实用,需要的朋友可以参考下

本文实例讲述了codeigniter实现get分页的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. public function project_search(){ 
  2. $this->load->library('pagination'); 
  3. $this->load->model('depart_mdl'); 
  4. //获取搜索需要的信息 
  5. $data = $this->get_project_data(); 
  6. $get_data = $this->input->get(); 
  7. $data = array_merge($data,$get_data); 
  8. //get分页配置 
  9. $name = $get_data['name']; 
  10. $username = $get_data['username']; 
  11. $budget = $get_data['budget']; 
  12. $type = $get_data['type']; 
  13. $posttime_start = $get_data['posttime_start']; 
  14. $posttime_end = $get_data['posttime_end']; 
  15. $purchase_type = $get_data['purchase_type']; 
  16. $depart_code = $get_data['depart_code']; 
  17. $project_status = $get_data['project_status']; 
  18. $bidder_way = $get_data['bidder_way']; 
  19. $suffix = "?name=$name&username=$username&budget=$budget&type=$type&posttime_start=$posttime_start&posttime_end=$posttime_end&purchase_type=$purchase_type&depart_code=$depart_code&project_status=$project_status&bidder_way=$bidder_way"
  20. $config['base_url'] = site_url('project/project_search').$suffix
  21. $config['total_rows'] = $this->db->count_all($this->db->dbprefix('project')); 
  22. $config['per_page'] = 10; 
  23. $config['page_query_string'] = TRUE; 
  24. //偏移量 
  25. $config['query_string_segment'] = 'page'
  26. $config['uri_segment'] = 3; 
  27. $this->pagination->initialize($config); 
  28. $user = $this->user_mdl->get_user_by_salary_no($this->session->userdata('salary_no')); 
  29. $this->db->from('ustc_project'); 
  30. $this->db->join('ustc_admins','ustc_admins.salary_no=ustc_project.salary_no'); 
  31. if($user->role!=1){ 
  32. $depart_code = explode(',',$user->grant_depart_code); 
  33. $this->db->where_in('grant_depart_code',$depart_code); 
  34. $this->db->or_where('ustc_project.salary_no =',$this->session->userdata('salary_no')); 
  35. if($name != ''){ 
  36. $this->db->like('name',$name); 
  37. if($username != ''){ 
  38. $this->db->like('username',$get_data['username']); 
  39. if($budget != ''){ 
  40. $this->db->like('budget',$get_data['budget']); 
  41. if($type != ''){ 
  42. $this->db->where('type',$get_data['type']); 
  43. if($depart_code != ''){ 
  44. $this->db->where('depart_code',$get_data['depart_code']); 
  45. if($purchase_type != ''){ 
  46. $this->db->where('purchase_type',$get_data['purchase_type']); 
  47. if($project_status != ''){ 
  48. $this->db->where('project_status',$get_data['project_status']); 
  49. if($bidder_way != ''){ 
  50. $this->db->where('bidder_way',$get_data['bidder_way']); 
  51. //时间 
  52. if($posttime_start != ''){ 
  53. $this->db->where('posttime > ',strtotime($get_data['posttime_start'])); 
  54. if($posttime_end != ''){ 
  55. $this->db->where('posttime < ',strtotime($get_data['posttime_end'])); 
  56. if(isset($get_data['page'])){ 
  57. $page_from = $get_data['page']; 
  58. }else
  59. $page_from = 0; 
  60. $this->db->order_by('posttime','desc'); 
  61. $projects = $this->db->limit($config['per_page'],$page_from)->get()->result_array();  
  62. //处理 
  63. for($i=0;$i<count($projects);$i++){ 
  64. $projects[$i]['type'] = $this->manage_info_mdl->get_value_by_id($projects[$i]['type'])->value; 
  65. $projects[$i]['purchase_type'] = $this->manage_info_mdl->get_value_by_id($projects[$i]['purchase_type'])->value; 
  66. $projects[$i]['depart'] = $this->depart_mdl->get_depart_by_code($projects[$i]['depart_code'])->name; 
  67. $data['projects'] = $projects
  68. //获取当前用户的角色 
  69. $data['user_role'] = $this->user_mdl->get_user_by_salary_no($this->session->userdata('salary_no'))->role;  
  70. $this->_template('project_search',$data); 

希望本文所述对大家基于codeigniter的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表