简单的php生成EXCEL类

<?php
if (!defined(‘IS_INITPHP’)) exit(‘Access Denied!’);
/*********************************************************************************
* InitPHP 2.0 国产PHP开发框架 扩展类库-CURL
*——————————————————————————-
* 版权所有: CopyRight By initphp.com
* 您可以自由使用该源码,但是在使用过程中,请保留作者信息。尊重他人劳动成果就是尊重自己
*——————————————————————————-
* $Author:liuxinming
* $Dtime:2012-05-10
***********************************************************************************/
class excelInit{
private $header = “<?xml version=\”1.0\” encoding=\”%s\”?\>\n<Workbook xmlns=\”urn:schemas-microsoft-com:office:spreadsheet\” xmlns:x=\”urn:schemas-microsoft-com:office:excel\” xmlns:ss=\”urn:schemas-microsoft-com:office:spreadsheet\” xmlns:html=\”http://www.w3.org/TR/REC-html40\”>”;
private $coding;
private $type;
private $tWorksheetTitle;
private $filename;
/**
* Excel基础配置
* @param string $coding 编码
* @param boolean $boolean 转换类型
* @param string $title 表标题
* @param string $filename Excel文件名
*/
public function config($enCoding,$boolean,$title,$filename){
//编码
$this->coding=$enCoding;
//转换类型
if($boolean==true){
$this->type=’Number’;
}else{
$this->type=’String’;
}
//表标题
$title=preg_replace(‘/[\\\|:|\/|\?|\*|\[|\]]/’, ”, $title);
$title = substr ($title, 0, 30);
$this->tWorksheetTitle=$title;
//文件名
$filename=preg_replace(‘/[^aA-zZ0-9\_\-]/’, ”, $filename);
$this->filename=$filename;
}
/**
* 循环生成Excel行
* @param array $cells
*/
public function addRow($data){
$cells=”;
foreach ($data as $key => $val){
$type=$this->type;
//字符转换为 HTML 实体
$val=htmlentities($val,ENT_COMPAT,$this->coding);
$cells.=”<Cell><Data ss:Type=\”$type\”>” . $val . “</Data></Cell>\n”;
}
return $cells;
}
/**
* 生成Excel文件
* @param array $data
* @param string $filename
*/
public function excelXls($data){
header(“Content-Type: application/vnd.ms-excel; charset=” . $this->coding);
header(“Content-Disposition: inline; filename=\”" . $this->filename . “.xls\”");
/*打印*/
echo stripslashes (sprintf($this->header, $this->coding));
echo “\n<Worksheet ss:Name=\”" . $this->tWorksheetTitle . “\”>\n<Table>\n”;
foreach ($data as $key => $val){
$rows=$this->addRow($val);
echo “<Row>\n”.$rows.”</Row>\n”;
}
echo “</Table>\n</Worksheet>\n”;
echo “</Workbook>”;
}
}
?>

用法:

$excel= $this->getLibrary(‘excel’);
$data = array(
1 => array (‘Name’, ‘Surname’),
array(‘Schwarz’, ‘Oliver’),
array(‘Test’, ‘Peter’)
);
$excel->config(‘UTF-8′,false,’工作区1′,’测试excel’);
$excel->excelXls($data);

initphp中国轻量级框架下载地址:http://www.initphp.com
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值