|
发表于 2015-1-22 18:09:52
|
显示全部楼层
本帖最后由 Closer 于 2015-1-22 18:19 编辑
手冊裡有提到 CI 手冊 - Active Record 类
有一區塊在介紹 $this->db->where();
你試試這個下面那兩段代碼
PHP复制代码
//控制器
$table = 'user';
$th_s = 'register_time >';
$td_s = date('Y-m-d').' 00:00:00';
$th_e = 'register_time <';
$td_e = date('Y-m-d').' 23:59:59';
$today_count = $this->(你模型的名稱 )->get_Today_ppl($table, $th_s, $td_s, $th_e, $td_e);
复制代码
PHP复制代码
//模型
public function get_Today_ppl($table, $th_s, $td_s, $th_e, $td_e){
$query = $this->db->where($th_s,$td_s)->where($th_e,$td_e)->get($table);
return $query->num_rows();
}
复制代码 |
|