在CodeIgniter Active Record中使用'having'

时间:2012-09-02 15:06:52

标签: php codeigniter activerecord syntax

有谁知道为什么这种语法不起作用/导致服务器错误?

    $this->db->having('post_timestamp >=' . strtotime('last saturday')); 

1 个答案:

答案 0 :(得分:3)

如果您使用MySQL,则可能会转义查询。试试这个:

$this->db->having('post_timestamp >='. strtotime('last saturday'), NULL, FALSE);