ThinkPHP uses PHPExcel to implement Excel data import and export complete example, thinkphpphpexcel_PHP tutorial

WBOY
Release: 2016-07-13 10:23:07
Original
1431 people have browsed it

ThinkPHP uses PHPExcel to implement a complete example of Excel data import and export, thinkphpphpexcel

The example described in this article is used in the Thinkphp development framework. If the same method is used in other frameworks, many people may not be able to correctly implement the import and export of Excel. The problem is basically an error in the core class reference path of phpExcel. If there is a problem, everyone must test whether Lu Jin is quoted correctly.

The specific steps are as follows:

(1) Import Excel

First, upload files on the front html page: such as:

<form method="post" action="php文件" enctype="multipart/form-data">
 <h3>导入Excel表:</h3><input type="file" name="file_stu" />

  <input type="submit" value="导入" />
</form>

Copy after login

Second, process the file in the corresponding php file

 if (! empty ( $_FILES ['file_stu'] ['name'] )) 
 {
  $tmp_file = $_FILES ['file_stu'] ['tmp_name'];
  $file_types = explode ( ".", $_FILES ['file_stu'] ['name'] );
  $file_type = $file_types [count ( $file_types ) - 1];
   /*判别是不是.xls文件,判别是不是excel文件*/
   if (strtolower ( $file_type ) != "xls")       
  {
     $this->error ( '不是Excel文件,重新上传' );
   }
  /*设置上传路径*/
   $savePath = SITE_PATH . '/public/upfile/Excel/';
  /*以时间来命名上传的文件*/
   $str = date ( 'Ymdhis' ); 
   $file_name = $str . "." . $file_type;
   /*是否上传成功*/
   if (! copy ( $tmp_file, $savePath . $file_name )) 
   {
     $this->error ( '上传失败' );
   }
  /*
    *对上传的Excel数据进行处理生成编程数据,这个函数会在下面第三步的ExcelToArray类中

   注意:这里调用执行了第三步类里面的read函数,把Excel转化为数组并返回给$res,再进行数据库写入
  */
 $res = Service ( 'ExcelToArray' )->read ( $savePath . $file_name );
  /*
    重要代码 解决Thinkphp M、D方法不能调用的问题  
    如果在thinkphp中遇到M 、D方法失效时就加入下面一句代码
  */
  //spl_autoload_register ( array ('Think', 'autoload' ) );
  /*对生成的数组进行数据库的写入*/
  foreach ( $res as $k => $v ) 
  {
    if ($k != 0) 
   {
      $data ['uid'] = $v [0];
      $data ['password'] = sha1 ( '111111' );
      $data ['email'] = $v [1];
      $data ['uname'] = $v [3];
     $data ['institute'] = $v [4];
     $result = M ( 'user' )->add ( $data );
     if (! $result) 
     {
       $this->error ( '导入数据库失败' );
     }
   }
  }
}

Copy after login

Third: ExcelToArrary class, used to reference phpExcel and process Excel data
Note here: The ExcelToArrary class is built in addons /services/ExcelToArrary.class.php in the root directory

class ExcelToArrary extends Service{
 public function __construct() {
   /*导入phpExcel核心类  注意 :你的路径跟我不一样就不能直接复制*/
   include_once('./Excel/PHPExcel.php');
 }
/**
* 读取excel $filename 路径文件名 $encode 返回数据的编码 默认为utf8
*以下基本都不要修改
*/ 
public function read($filename,$encode='utf-8'){
     $objReader = PHPExcel_IOFactory::createReader('Excel5'); 
     $objReader->setReadDataOnly(true); 
     $objPHPExcel = $objReader->load($filename); 
     $objWorksheet = $objPHPExcel->getActiveSheet(); 
    $highestRow = $objWorksheet->getHighestRow(); 
    $highestColumn = $objWorksheet->getHighestColumn(); 
    $highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn); 
     $excelData = array(); 
    for ($row = 1; $row <= $highestRow; $row++) { 
     for ($col = 0; $col < $highestColumnIndex; $col++) { 
         $excelData[$row][] =(string)$objWorksheet->getCellByColumnAndRow($col, $row)->getValue();
      } 
     } 
    return $excelData; 
  }   
 }
Copy after login

Fourth, the above is all the imported content, the phpExcel package is attached at the end.

(2) Excel export (much simpler than importing)

First, find out the data in the database to generate Excel, such as:

$data= M('User')->findAll();  //查出数据
$name='Excelfile';  //生成的Excel文件文件名
$res=service('ExcelToArrary')->push($data,$name);

Copy after login

Second, the ExcelToArrary class, used to reference phpExcel and process data

class ExcelToArrary extends Service{
public function __construct() {
   /*导入phpExcel核心类  注意 :你的路径跟我不一样就不能直接复制*/
    include_once('./Excel/PHPExcel.php');
}
/* 导出excel函数*/
public function push($data,$name='Excel'){
 error_reporting(E_ALL);
 date_default_timezone_set('Europe/London');
 $objPHPExcel = new PHPExcel();

/*以下是一些设置 ,什么作者 标题啊之类的*/
 $objPHPExcel->getProperties()->setCreator("转弯的阳光")
     ->setLastModifiedBy("转弯的阳光")
     ->setTitle("数据EXCEL导出")
     ->setSubject("数据EXCEL导出")
     ->setDescription("备份数据")
     ->setKeywords("excel")
    ->setCategory("result file");
 /*以下就是对处理Excel里的数据, 横着取数据,主要是这一步,其他基本都不要改*/
foreach($data as $k => $v){
   $num=$k+1;
   $objPHPExcel->setActiveSheetIndex(0)
  //Excel的第A列,uid是你查出数组的键值,下面以此类推
  ->setCellValue('A'.$num, $v['uid'])  
  ->setCellValue('B'.$num, $v['email'])
  ->setCellValue('C'.$num, $v['password'])
  }
  $objPHPExcel->getActiveSheet()->setTitle('User');
  $objPHPExcel->setActiveSheetIndex(0);
   header('Content-Type: application/vnd.ms-excel');
   header('Content-Disposition: attachment;filename="'.$name.'.xls"');
   header('Cache-Control: max-age=0');
   $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
   $objWriter->save('php://output');
   exit;
}

Copy after login

Third, the above is all the exported content, phpExcel download address http://www.bkjia.com/codes/194070.html

Use phpexcel to import excel table in thinkphp, PHPExcel_IOFactory is not found

Didn’t the prompt say that if it is not found, then the path is wrong? Please check it

thinkphp uses phpexcel to upload data to the database through excel and reports an error:

Maybe your excel format is not standardized
I also use the tp framework, and there is no problem when operating excel

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/844126.htmlTechArticleThinkPHP uses PHPExcel to implement Excel data import and export complete examples, thinkphpphpexcel The examples described in this article are used on the Thinkphp development framework , the same is true if used in other frameworks...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!