我有一个我的 sql 数据库,其中有一个存储日期的字段。我想要做的是在插入新记录时将当前日期存储到该字段。我在 Codeigniter 中的 php 代码插入一个新条目
$commentData = array(
'comment'=>$message,
'docid'=>$_GET['id'],
'username'=>$owner,
'commenter'=>$currentUser,
//here i need to add my new date entry
);
$this->showSearchResult_model->addComment($commentData);
在我的模型中
$this->db->insert('comment', $comment);
如何编辑它以插入当前日期