phpexcel import excel to mysql database (example)
Release: 2016-07-25 08:54:56
Original
918 people have browsed it
2,执行页面insertdb.php
-
-
session_start(); - header("Content-type:text/html;charset:utf-8");
- //全局变量
$succ_result=0;
- $error_result=0;
- $file=$_FILES['filename'];
- $max_size="2000000"; //最大文件限制(单位:byte)
- $fname=$file['name'];
- $ftype=strtolower(substr(strrchr($fname,'.'),1));
- //文件格式
- $uploadfile=$file['tmp_name'];
- if($_SERVER['REQUEST_METHOD']=='POST'){
- if(is_uploaded_file($uploadfile)){
- if($file['size']>$max_size){
- echo "Import file is too large";
- exit;
- }
- if($ftype!='xls'){
- echo "Import file type is error";
- exit;
- }
- }else{
- echo "The file is not empty!";
- exit;
- }
- }
- require("./conn.php"); //连接mysql数据库
//调用phpexcel类库
- require_once 'phpexcel.php';
- require_once 'PHPExcelIOFactory.php';
- require_once 'PHPExcelReaderExcel5.php';
$objReader = PHPExcel_IOFactory::createReader('Excel5');//use excel2007 for 2007 format
- $objPHPExcel = $objReader->load($uploadfile);
- $sheet = $objPHPExcel->getSheet(0);
- $highestRow = $sheet->getHighestRow(); // 取得总行数
- $highestColumn = $sheet->getHighestColumn(); // 取得总列数
- $arr_result=array();
- $strs=array();
for($j=2;$j<=$highestRow;$j++) - {
- unset($arr_result);
- unset($strs);
- for($k='A';$k<= $highestColumn;$k++)
- {
- //读取单元格
- $arr_result .= $objPHPExcel->getActiveSheet()->getCell("$k$j")->getValue().',';
- }
- $strs=explode(",",$arr_result);
- $sql="insert into student(typeId,name,sex,age) values ($strs[0],'$strs[1]','$strs[2]',$strs[3])";
- echo $sql."
";
- mysql_query("set names utf8");
- $result=mysql_query($sql) or die("执行错误");
$insert_num=mysql_affected_rows();
- if($insert_num>0){
- $succ_result+=1;
- }else{
- $error_result+=1;
- }
- }
echo "插入成功".$succ_result."条数据!!! ";
- echo "插入失败".$error_result."条数据!!!";
- ?>
-
复制代码
|
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
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31