这里 Date 的格式为 yy-mm-dd hr:min:sec 其中 $this->get('on') 的格式为 yy-mm-dd 。那么现在如何比较这两个值呢?
function customer_get()
{
$this->db->select('user_id,first_name,last_name,email');
$this->db->from('customers');
$this->db->join('orders', 'user_id = customer_user_id','inner');
$array = array('Date' => $this->get('on'));
$this->db->where($array);
$query = $this->db->get();
if($query)
{
$this->response($query->result(),200);
}
else
{
$this->response(NULL, 404);
}
}