PHP Excel导入
public function importFile() { $file = request()-> file ('file' ); $params = $this ->request->param(); //可以获取到参数 if (! $file ) { $this ->error('请选择导入文件' ); } // 保存的文件路径 $info = $file ->move(ROOT_PATH . 'public' . DS . 'uploads' ); //获取文件路径 $filePath = ROOT_PATH . 'public' . DS . 'uploads' . DS . $info -> getSaveName(); //找不到文件 if (! is_file ( $filePath )) { $this ->error('无相关记录' ); } //===========开始 $PHPReader = new \PHPExcel_Reader_Excel2007(); if (! $PHPReader ->canRead( $filePath )) { $PHPReader = new \PHPExcel_Reader_Excel5(); if (! $PHPReader ->canRead( $filePath )) {