《分享關(guān)于PHP處理excel功能類(lèi)》要點(diǎn):
本文介紹了分享關(guān)于PHP處理excel功能類(lèi),希望對(duì)您有用。如果有疑問(wèn),可以聯(lián)系我們。
相關(guān)主題:PHP開(kāi)發(fā)
維易PHP培訓(xùn)學(xué)院每天發(fā)布《分享關(guān)于PHP處理excel功能類(lèi)》等實(shí)戰(zhàn)技能,PHP、MYSQL、LINUX、APP、JS,CSS全面培養(yǎng)人才。
本日給大家分享的是關(guān)于PHP導(dǎo)出EXCEL功能類(lèi)處理函數(shù),相信大家在坐項(xiàng)目的時(shí)候,經(jīng)常會(huì)碰到.
好的廢話(huà)不多說(shuō),直接上代碼
<?php class Excel { static $instance=null; private $excel=null; private $workbook=null; private $workbookadd=null; private $worksheet=null; private $worksheetadd=null; private $sheetnum=1; private $cells=array(); private $fields=array(); private $maxrows; private $maxcols; private $filename; //構(gòu)造函數(shù) private function Excel() { $this->excel = new COM("Excel.Application") or die("Did Not Connect"); } //類(lèi)入口 public static function getInstance() { if(null == self::$instance) { self::$instance = new Excel(); } return self::$instance; } //設(shè)置文件地址 public function setFile($filename) { return $this->filename=$filename; } //打開(kāi)文件 public function Open() { $this->workbook=$this->excel->WorkBooks->Open($this->filename); } //設(shè)置Sheet public function setSheet($num=1) { if($num>0) { $this->sheetnum=$num; $this->worksheet=$this->excel->WorkSheets[$this->sheetnum]; $this->maxcols=$this->maxCols(); $this->maxrows=$this->maxRows(); $this->getCells(); } } //取得表所有值并寫(xiě)進(jìn)數(shù)組 private function getCells() { for($i=1;$i<$this->maxcols;$i++) { for($j=2;$j<$this->maxrows;$j++) { $this->cells[$this->worksheet->Cells(1,$i)->value][]=(string)$this->worksheet->Cells($j,$i)->value; } } return $this->cells; } //返回表格內(nèi)容數(shù)組 public function getAllData() { return $this->cells; } //返回制定單元格內(nèi)容 public function Cell($row,$col) { return $this->worksheet->Cells($row,$col)->Value; } //取得表格字段名數(shù)組 public function getFields() { for($i=1;$i<$this->maxcols;$i++) { $this->fields[]=$this->worksheet->Cells(1,$i)->value; } return $this->fields; } //修改制定單元格內(nèi)容 public function editCell($row,$col,$value) { if($this->workbook==null || $this->worksheet==null) { echo "Error:Did Not Connect!"; }else{ $this->worksheet->Cells($row,$col)->Value=$value; $this->workbook->Save(); } } //修改一行數(shù)據(jù) public function editOneRow($row,$arr) { if($this->workbook==null || $this->worksheet==null || $row>=2) { echo "Error:Did Not Connect!"; }else{ if(count($arr)==$this->maxcols-1) { $i=1; foreach($arr as $val) { $this->worksheet->Cells($row,$i)->Value=$val; $i++; } $this->workbook->Save(); } } } //取得總列數(shù) private function maxCols() { $i=1; while(true) { if(0==$this->worksheet->Cells(1,$i)) { return $i; break; } $i++; } } //取得總行數(shù) private function maxRows() { $i=1; while(true) { if(0==$this->worksheet->Cells($i,1)) { return $i; break; } $i++; } } //讀取制定行數(shù)據(jù) public function getOneRow($row=2) { if($row>=2) { for($i=1;$i<$this->maxcols;$i++) { $arr[]=$this->worksheet->Cells($row,$i)->Value; } return $arr; } } //關(guān)閉對(duì)象 public function Close() { $this->excel->WorkBooks->Close(); $this->excel=null; $this->workbook=null; $this->worksheet=null; self::$instance=null; } }; /* $excel = new COM("Excel.Application"); $workbook = $excel->WorkBooks->Open('D://Apache2//htdocs//wwwroot//MyExcel.xls'); $worksheet = $excel->WorkSheets(1); echo $worksheet->Cells(2,6)->Value; $excel->WorkBooks->Close(); */ $excel=Excel::getInstance(); $excel->setFile("D://kaka.xls"); $excel->Open(); $excel->setSheet(); for($i=1;$i<16;$i++ ) { $arr[]=$i; } //$excel->editOneRow(2,$arr); //print_r($excel->getAllData()); $str=$excel->getAllData(); include_once('mail.class.php'); $smtpserver="smtp.yeah.net"; $smtpserverport=25; $smtpuseremail="yanqihu58@yeah.net"; $smtpemailto="yanqihu@139.com"; $smtpuser="yanqihu58"; $smtppwd="123456789"; $mailtype="HTML"; $smtp=new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppwd); $message="你好"; //$message.="首頁(yè)連接地址為:".$this->link_url."<br>"; //$message.="電子郵箱為:".$this->link_email."<br>"; //$message.="商務(wù)聯(lián)系QQ:".$this->link_qq."<br>"; //$message.="商務(wù)電話(huà)QQ:".$this->link_tel."<br>"; //$message.="聯(lián)系人:".$this->link_people."<br>"; $smtp->debug=false; foreach($str['email'] as $key=>$value){ $smtpemailto=$value; @$smtp->sendmail($smtpemailto,$smtpuseremail,$mailsubject,$message,$mailtype); exit; } //exit; $excel->Close(); ?>
這個(gè)便是常見(jiàn)的處理方式,是不是很簡(jiǎn)單
上一篇:分享關(guān)于PHP圖片驗(yàn)證碼登錄模塊功效
轉(zhuǎn)載請(qǐng)注明本頁(yè)網(wǎng)址:
http://www.snjht.com/jiaocheng/14283.html