标签: php codeigniter activerecord syntax
有谁知道为什么这种语法不起作用/导致服务器错误?
$this->db->having('post_timestamp >=' . strtotime('last saturday'));
答案 0 :(得分:3)
如果您使用MySQL,则可能会转义查询。试试这个:
$this->db->having('post_timestamp >='. strtotime('last saturday'), NULL, FALSE);