|
PHP复制代码
$data = array(
'title' => $this->input->post('title',true),
'body' => $this->input->post('title',true),
'time' => ' NOW() ',
'cid' => $this->input->post('cid',true),
);
$this->article->add($data);
复制代码
NOW()被当做字符串加入了,如果这里不用PHP的时间函数生成时间,CI有提供什么方法让这里能否执行MYSQL函数吗? |
|