当前位置: 网学 > 编程文档 > PHP > 正文

php excel reader读取excel内容存入数据库实现代码

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/18

本文主要为广大网友提供“php excel reader读取excel内容存入数据库实现代码”,希望对需要php excel reader读取excel内容存入数据库实现代码网友有所帮助,学习一下!

上一篇文章介绍了php-excel-reader读取excel文件的方法,因为需要,将excel这样的数据:

php-excel-reader读取excel内容存入数据库新建数据库表如下:

-- 数据库: `alumni`

-- 表的结构 `alumni`

CREATE TABLE IF NOT EXISTS `alumni` (

`id` bigint(20) NOT NULL AUTO_INCREMENT,

`gid` varchar(20) DEFAULT NULL COMMENT ''档案编号'',

`student_no` varchar(20) DEFAULT NULL COMMENT ''学号'',

`name` varchar(32) DEFAULT NULL,

PRIMARY KEY (`id`),

KEY `gid` (`gid`),

KEY `name` (`name`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8;

导入后数据库结果如下:

php-excel-reader读取excel内容存入数据库结果php源码如下:
复制代码 代码如下:
<?php
header("Content-Type:text/html;charset=utf-8");
require_once ''excel_reader2.php'';
set_time_limit(20000);
ini_set("memory_limit","2000M");
//使用pdo连接数据库
$dsn = "mysql:host=localhost;dbname=alumni;";
$user = "root";
$password = "";
try{
$dbh = new PDO($dsn,$user,$password);
$dbh->query(''set names utf8;'');
}catch(PDOException $e){
echo "连接失败".$e->getMessage();
}
//pdo绑定参数操作
$stmt = $dbh->prepare("insert into alumni(gid,student_no,name) values (:gid,:student_no,:name) ");
$stmt->bindParam(":gid", $gid,PDO::PARAM_STR);
$stmt->bindParam(":student_no", $student_no,PDO::PARAM_STR);
$stmt->bindParam(":name", $name,PDO::PARAM_STR);
//使用php-excel-reader读取excel内容
$data = new Spreadsheet_Excel_Reader();
$data->setOutputEncoding(''UTF-8'');
$data->read("stu.xls");
for ($i = 1; $i <= $data->sheets[0][''numRows'']; $i++) {
for ($j = 1; $j <= 3; $j++) {
$student_no = $data->sheets[0][''cells''][$i];
$name = $data->sheets[0][''cells''][$i];
$gid = $data->sheets[0][''cells''][$i];
}
//将获取的excel内容插入到数据库
$stmt->execute();
}
echo "执行成功";
echo "最后插入的ID:".$dbh->lastInsertId();
?>

考虑到excel的量比较大,使用了PDO的绑定操作!

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号