Home > Backend Development > PHP Tutorial > Use the phpexcel class to implement the excel import mysql database function (example code), phpexcelmysql_PHP tutorial

Use the phpexcel class to implement the excel import mysql database function (example code), phpexcelmysql_PHP tutorial

WBOY
Release: 2016-07-12 08:52:55
Original
1000 people have browsed it

Use the phpexcel class to implement the excel import mysql database function (example code), phpexcelmysql

Download the phpexcel file, address: phpexcel.codeplex.com/

Code Example

require_once 'phpexcel/Classes/PHPExcel.php';
require_once 'phpexcel/Classes/PHPExcel/IOFactory.php';
require_once 'phpexcel/Classes/PHPExcel/Reader/Excel5.php';
$objReader = PHPExcel_IOFactory::createReader('Excel5');//use excel2007 for 2007 format 
$objPHPExcel = $objReader->load($filename); //$filename可以是上传的文件,或者是指定的文件
$sheet = $objPHPExcel->getSheet(0); 
$highestRow = $sheet->getHighestRow(); // 取得总行数 
$highestColumn = $sheet->getHighestColumn(); // 取得总列数
$k = 0; 

//循环读取excel文件,读取一条,插入一条
for($j=2;$j<=$highestRow;$j++)
{

$a = $objPHPExcel->getActiveSheet()->getCell("A".$j)->getValue();//获取A列的值
$b = $objPHPExcel->getActiveSheet()->getCell("B".$j)->getValue();//获取B列的值
$sql = "INSERT INTO table VALUES(".$a.",".$b.")";
mysql_query($sql);

}

Copy after login

The above article uses the phpexcel class to implement the function of Excel importing mysql database (example code). This is all the content shared by the editor. I hope it can give you a reference, and I also hope that everyone will support Bangkejia.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1125864.htmlTechArticleUse the phpexcel class to implement the excel import mysql database function (example code), phpexcelmysql Download the phpexcel file, address: phpexcel.codeplex .com/ Code Example require_once 'phpexcel/Clas...
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