common_model->checkpurview(); $this->load->library('excel/excel'); } public function index() { $info = upload('file','./data/upfile/'); $xls = $info['path']; $this->excel->setOutputEncoding('utf-8'); $this->excel->read($xls); $list = $this->excel->sheets[0]['cells']; foreach ($list as $arr=>$row) { $data[$arr]['id'] = @$row['1']; $data[$arr]['title'] = @$row['2']; $data[$arr]['nr'] = @$row['3']; } print_r($data); //str_alert(-1,'文件写入失败'); } } /* End of file welcome.php */ /* Location: ./application/controllers/welcome.php */