寒月隐然 发表于 2017-5-12 15:48:31

limit使用无效

      $this->db->select($fieldsStr);
      $this->db->from($table);
      $this->db->where($whereArr);
      $this->db->like($likeArr);
      $this->db->order_by($orderByStr);
      $this->db->limit($limit);
      $query = $this->db->get();

打印出来的sql是:SELECT `id`, `name`, `introduction`, `rule`, `previlige`, `created_at`, `status` FROM `site_admin` ORDER BY `id` desc

limit部分出不来?请问是什么原因?

Hex 发表于 2017-5-12 16:20:14

你确定 $limit 有内容?

寒月隐然 发表于 2017-5-12 16:49:32

Hex 发表于 2017-5-12 16:20
你确定 $limit 有内容?

确认 $limit为false:L:L

寒月隐然 发表于 2017-5-12 16:50:22

正如1楼所说,$limit要有值
页: [1]
查看完整版本: limit使用无效