我在php中使用codeigniter框架。我有一张发票表,其中包含日期和时间的时间戳。我想在日期之间获取记录。
例如: 我已尝试过以下但不起作用
$data['sdate'] = $this->input->post('sdate');
$data['edate'] = $this->input->post('edate');
$this->db->select('invoice_id')
->from('invoice')
->where('DATE( FROM_UNIXTIME( creation_timestamp ) ) >= ',$data[sdate])
->where('DATE( FROM_UNIXTIME( creation_timestamp ) ) <=',$data[edate]);
$page_data['invoice']=$this->db->get()->result_array();
但这不起作用。有谁知道如何解决这一问题? 提前谢谢。
答案 0 :(得分:0)
试试这个:
$data['sdate'] = strtotime($this->input->post('sdate'));
$data['edate'] = strtotime($this->input->post('edate'));
$this->db->select('invoice_id')
->from('invoice')
->where('creation_timestamp >= ',$data[sdate])
->where('creation_timestamp <= ',$data[edate]);
$page_data['invoice']=$this->db->get()->result_array();