php 导出数据到excel类
程序员文章站
2022-05-19 16:08:01
...
将数据导出到excel当中
<?php /** * 导出到excel文件(一般导出中文的都会乱码,需要进行编码转换) * 使用方法如下 * $excel = new Excel(); * $excel->addHeader(array('列1','列2','列3','列4')); * $excel->addBody( array( array('数据1','数据2','数据3','数据4'), array('数据1','数据2','数据3','数据4'), array('数据1','数据2','数据3','数据4'), array('数据1','数据2','数据3','数据4') ) ); * $excel->downLoad(); */ class Excel{ private $head; private $body; /** * * @param type $arr 一维数组 */ public function addHeader($arr){ foreach($arr as $headVal){ $headVal = $this->charset($headVal); $this->head .= "{$headVal}\t "; } $this->head .= "\n"; } /** * * @param type $arr 二维数组 */ public function addBody($arr){ foreach($arr as $arrBody){ foreach($arrBody as $bodyVal){ $bodyVal = $this->charset($bodyVal); // 过滤特殊字符 $bodyVal = str_replace(array('\\n','\\t','<br>','<br />', '<br>','</br>'), "", $bodyVal); $bodyVal = str_replace(array("rn", "r", "n"), "", $bodyVal); $bodyVal =preg_replace("{\t}","",$bodyVal); $bodyVal=preg_replace("{\r\n}","",$bodyVal); $bodyVal=preg_replace("{\r}","",$bodyVal); $bodyVal=preg_replace("{\n}","",$bodyVal); $bodyVal = str_replace(",", " ",$bodyVal); $this->body .= "{$bodyVal}\t "; } $this->body .= "\n"; } } /** * 下载excel文件 */ public function downLoad($filename=''){ if(!$filename) $filename = date('YmdHis',time()).'.xls'; header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:attachment;filename=$filename"); header("Content-Type:charset=gb2312"); if($this->head) echo $this->head; echo $this->body; } /** * 编码转换 * @param type $string * @return string */ public function charset($string){ return iconv("utf-8", "gb2312", $string); } } ?>
上一篇: 夏季重在祛湿健脾 推荐八款养生汤赶走湿气
下一篇: 冬季进补喝什么汤 六款养生汤暖胃御寒
推荐阅读
-
SqlCommandBuilder类批量更新excel或者CSV数据的方法
-
thinkPHP实现将excel导入到数据库中的方法
-
PHP单例模式数据库连接类与页面静态化实现方法
-
mysql 导出select语句结果到excel文件遇到问题及解决方法
-
BCP SQL导出EXCEL常见问题及解决方法;数据导出存储过程
-
asp.net实现Gradview绑定数据库数据并导出Excel的方法
-
C#中将ListView中数据导出到Excel的实例方法
-
asp.net实现将Excel中多个sheet数据导入到SQLSERVER中的方法
-
asp.net实现数据从DataTable导入到Excel文件并创建表的方法
-
PHP单例模式数据库连接类与页面静态化实现方法