在数据库中插入记录时。每次使用CodeIgniter事务插入2条或更多条记录
$this->db->trans_start();
$this->test_model->insert_function($data);
$this->test_model->update_function2($test);
$this->test_model->insert_function2($data);
$this->test_model->update_function3($test);
$this->db->trans_complete();