我在模型中有这样的功能。
function news()
{
$data = array(
'title' => $this->input->post('title'),
'date' => $this->input->post('date'),
'newstext' => $this->input->post('newstext'),
);
$this->db->insert('news', $data);
}
我想$data['title']
在同一模型内的另一个函数中使用它。我怎样才能做到这一点?