码迷,mamicode.com
首页 > 数据库 > 详细

php读取excel内容并写入mysql中

时间:2015-05-14 16:36:02      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:excel读取   php读取excel   excel写入数据库   

实现功能:上传EXCEL文件,并按照格式导入到数据库中

在网上查找到phpecel 但是phpexcel实在是太大,自身能力有限不能很好的精简,最终找到了phpexcelreader这个类;非常小又能实现我需要的功能


第一步、下载phpexcelReader类(后面给出)

第二步、创建add.php写入如下代码:

$str=$_FILES['excelname']['tmp_name'];
$data = new Spreadsheet_Excel_Reader($str);
$data_arr = $data->sheets;
$all_data = $data_arr[0]['cells'];
foreach($all_data as $ak=>$av){
    组织sql语句
}
$data->sheets将excel里面的内容以数据形式输出;

$data->dump(true,true); 将excel里面的内容以html形式输出;

第三步、编写html上传文件

<form action='./add' method="post" enctype="multipart/form-data">
 <table cellpadding='5px' align='center' width='100%'>
 <tr>
  <td><span style='color:red;'>*</span> 请选择文件:</td>
					<td><input type='file' name='excelname'></td>
				</tr>
				<tr>
					<td colspan='2'><input type='submit' name='submit' value='导入数据'></td>
				</tr>
				</table>
			</form>
按照上述流程excel内容就可以正确导入到mysql中

写好的例子:http://yun.baidu.com/share/link?shareid=3068641847&uk=2903375990

php读取excel内容并写入mysql中

标签:excel读取   php读取excel   excel写入数据库   

原文地址:http://blog.csdn.net/slyjit/article/details/45720555

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!