日付を格納するフィールドがある 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);
これを編集して現在の日付を挿入するにはどうすればよいですか