2

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

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

1 回答 1

3

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

$this->db->having('post_timestamp >='. strtotime('last saturday'), NULL, FALSE); 
于 2012-09-02T15:17:16.740 回答