php导入导出excel实例
这里实现的php导入导出excel功能用到的是开源phpexcel,执行下面的操作之前请先下载该类库文件,官方网站:http://www.codeplex.com/phpexcel,官网案例代码很多,导出pdf什么的都有,这里主要介绍php导入导出excel的功能,导出excel文件是office2007格式,同时兼容2003。
php导入excel
导入的excel文件的数据格式,截图如下:
下面是将该excel文件的数据导入到数据库的具体代码:
<?php
require_once 'classes/phpexcel.php';
require_once 'classes/phpexcel/iofactory.php';
require_once 'classes/phpexcel/reader/excel5.php';
$objreader=phpexcel_iofactory::createreader('excel5');//use excel2007 for 2007 format
$objphpexcel=$objreader->load($file_url);//$file_url即excel文件的路径
$sheet=$objphpexcel->getsheet(0);//获取第一个工作表
$highestrow=$sheet->gethighestrow();//取得总行数
$highestcolumn=$sheet->gethighestcolumn(); //取得总列数
//循环读取excel文件,读取一条,插入一条
for($j=2;$j<=$highestrow;$j++){//从第一行开始读取数据
$str='';
for($k='a';$k<=$highestcolumn;$k++){ //从a列读取数据
//这种方法简单,但有不妥,以'\\'合并为数组,再分割\\为字段值插入到数据库,实测在excel中,如果某单元格的值包含了\\导入的数据会为空
$str.=$objphpexcel->getactivesheet()->getcell("$k$j")->getvalue().'\\';//读取单元格
}
//explode:函数把字符串分割为数组。
$strs=explode("\\",$str);
$sql="insert into `".tb_prefix."business`(`username`,`password`,`company`,`prov`,`address`,`btime`,`phone`,`email`,`name`) values (
'{$strs[0]}',
'{$strs[1]}',
'{$strs[2]}',
'{$strs[3]}',
'{$strs[4]}',
'{$strs[5]}',
'{$strs[6]}',
'{$strs[7]}',
'{$strs[8]}')";
$db->query($sql);//这里执行的是插入数据库操作
}
unlink($file_url); //删除excel文件
?>
php导出excel
下面直接放出本人总结的使用php导出excel的部分调用代码。
<?php
error_reporting(e_all);
date_default_timezone_set('asia/shanghai');
require_once './classes/phpexcel.php';
$data=array(
0=>array(
'id'=>1001,
'username'=>'张飞',
'password'=>'123456',
'address'=>'三国时高老庄250巷101室'
),
1=>array(
'id'=>1002,
'username'=>'关羽',
'password'=>'123456',
'address'=>'三国时花果山'
),
2=>array(
'id'=>1003,
'username'=>'曹操',
'password'=>'123456',
'address'=>'延安西路2055弄3号'
),
3=>array(
'id'=>1004,
'username'=>'刘备',
'password'=>'654321',
'address'=>'愚园路188号3309室'
)
);
$objphpexcel=new phpexcel();
$objphpexcel->getproperties()->setcreator('//www.jb51.net')
->setlastmodifiedby('//www.jb51.net')
->settitle('office 2007 xlsx document')
->setsubject('office 2007 xlsx document')
->setdescription('document for office 2007 xlsx, generated using php classes.')
->setkeywords('office 2007 openxml php')
->setcategory('result file');
$objphpexcel->setactivesheetindex(0)
->setcellvalue('a1','id')
->setcellvalue('b1','用户名')
->setcellvalue('c1','密码')
->setcellvalue('d1','地址');
$i=2;
foreach($data as $k=>$v){
$objphpexcel->setactivesheetindex(0)
->setcellvalue('a'.$i,$v['id'])
->setcellvalue('b'.$i,$v['username'])
->setcellvalue('c'.$i,$v['password'])
->setcellvalue('d'.$i,$v['address']);
$i++;
}
$objphpexcel->getactivesheet()->settitle('三年级2班');
$objphpexcel->setactivesheetindex(0);
$filename=urlencode('学生信息统计表').'_'.date('y-m-dhis');
/*
*生成xlsx文件
header('content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('content-disposition: attachment;filename="'.$filename.'.xlsx"');
header('cache-control: max-age=0');
$objwriter=phpexcel_iofactory::createwriter($objphpexcel,'excel2007');
*/
/*
*生成xls文件
header('content-type: application/vnd.ms-excel');
header('content-disposition: attachment;filename="'.$filename.'.xls"');
header('cache-control: max-age=0');
$objwriter = phpexcel_iofactory::createwriter($objphpexcel, 'excel5');
*/
$objwriter->save('php://output');
exit;
上一篇: Ai怎么绘制坐着轮椅人的标志?
下一篇: java设计模式--桥接模式
推荐阅读
-
精妙的SQL和SQL SERVER 与ACCESS、EXCEL的数据导入导出转换
-
精妙的SQL和SQL SERVER 与ACCESS、EXCEL的数据导入导出转换
-
php导入导出excel实例
-
使用PHP导出Word文档的原理和实例
-
Excel-Boot(一款Excel导入导出解决方案组成的轻量级开源组件)
-
【C#常用方法】2.DataTable(或DataSet)与Excel文件之间的导出与导入(使用NPOI)
-
Excel导入数据库(php版)
-
PHP+MySQL实现海量数据导入导出的总结:is_numbric函数的坑
-
php生成excel列序号代码实例
-
phpexcel导入excel数据使用方法实例