程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP基礎知識 >> PHP 導出excel數據的一個類庫

PHP 導出excel數據的一個類庫

編輯:PHP基礎知識
 

今天一個項目要做一個PHP導出數據用excel保存,在網上找到一個本來是想用phpexcel的,後來發現太難了,就換了一個但導出的歌聲是XML

類寫的很簡單,但很實用。只能簡單的導出字符串和數字二種格式。

如果你有興趣,你可以拿去擴充了,基本夠用。

class Excel_XML
{
//定於私有變量,頂部標簽
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 $footer = "</Workbook>";
//定於行數組
private $lines = array();
//設置編碼
private $sEncoding;
//設置類型
private $bConvertTypes;
//設置sheet名稱
private $sWorksheetTitle;
//構造函數
public function __construct(
$sEncoding = 'UTF-8',$bConvertTypes = false,$sWorksheetTitle = 'Table1')
{
$this->bConvertTypes = $bConvertTypes;
$this->setEncoding($sEncoding);
$this->setWorksheetTitle($sWorksheetTitle);
}
//設置編碼,在構造函數裡面默認的事UTF-8格式
public function setEncoding($sEncoding)
{
$this->sEncoding = $sEncoding;
}
//設置excel的頭
public function setWorksheetTitle ($title)
{
$title = preg_replace ("/[\\\|:|\/|\?|\*|\[|\]]/", "", $title);
$title = substr ($title, 0, 31);
$this->sWorksheetTitle = $title;
}
//增加行函數(關鍵函數)
private function addRow ($array)
{
$cells = ""; //設置每個單元為空
foreach ($array as $k => $v)
{
$type = 'String'; //默認類型是字符串
if ($this->bConvertTypes === true && is_numeric($v)): //判斷類型
{ $type = 'Number'; }
$v = htmlentities($v, ENT_COMPAT, $this->sEncoding);
$cells .= "<Cell><Data ss:Type=\"$type\">" . $v . "</Data></Cell>\n";
}
$this->lines[] = "<Row>\n" . $cells . "</Row>\n"; //寫入數組
}
//增加數組
public function addArray ($array)
{
foreach ($array as $k => $v)
{$this->addRow ($v);}
}
//導出xml
public function generateXML ($filename = 'excel-export')
{
$filename = preg_replace('/[^aA-zZ0-9\_\-]/', '', $filename);

header("Content-Type: application/vnd.ms-excel; charset=" . $this->sEncoding);
header("Content-Disposition: inline; filename=\"" . $filename . ".xls\"");

echo stripslashes (sprintf($this->header, $this->sEncoding));
echo "\n<Worksheet ss:Name=\"" . $this->sWorksheetTitle . "\">\n<Table>\n";
foreach ($this->lines as $line)
echo $line;

echo "</Table>\n</Worksheet>\n";
echo $this->footer;
}
}



原理很簡單,就是把數據數組,讀出來,再用XML的標簽封上,在用php自帶的header()函數告訴游覽器,就可以了。
怎麼調用?
public function import()
{
$data = array(
1 => array ('學校名稱',"隊伍名稱")
);
foreach($this->team as $key=>$value)
{
array_push($data,array($key, $value));
}
$xls = new Excel_XML('UTF-8', false, 'My Test Sheet'); //實例化函數
$xls->addArray($data);
$xls->generateXML('school'); //導出並設置名稱
}

上面是的寫一個導出方式。在游覽器運行就已經導出數組$this->team 裡面的鍵和值了。。

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved