标签: php mysql codeigniter
是否可以插入NOW()或users.username等活动记录。 Codeigniter始终将值包装在引号中。
答案 0 :(得分:3)
是的,它是 - 使用set()方法,第三个参数设置为FALSE。
$this->db->set('date', 'NOW()', FALSE); $this->db->insert('mytable');