使用codeigniter活动记录插入非文字值

时间:2010-11-01 06:20:56

标签: php mysql codeigniter

是否可以插入NOW()或users.username等活动记录。 Codeigniter始终将值包装在引号中。

1 个答案:

答案 0 :(得分:3)

是的,它是 - 使用set()方法,第三个参数设置为FALSE。

$this->db->set('date', 'NOW()', FALSE);
$this->db->insert('mytable');