0

ここで Date は yy-mm-dd hr:min:sec の形式ですが、 $this->get('on') は yy-mm-dd の形式です。では、これら 2 つの値を比較するにはどうすればよいでしょうか。

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);
        }
}
4

1 に答える 1