Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この構文が機能しない/サーバーエラーを引き起こす理由を誰かが知っていますか?
$this->db->having('post_timestamp >=' . strtotime('last saturday'));
MySQLを使用している場合、クエリがエスケープされる可能性があります。これを試して:
$this->db->having('post_timestamp >='. strtotime('last saturday'), NULL, FALSE);