Home  >  Article  >  Backend Development  >  PHP reads and writes excel classes, supports multiple workbooks and custom styles, read and write excel_PHP tutorial

PHP reads and writes excel classes, supports multiple workbooks and custom styles, read and write excel_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:13:401120browse

php read and write excel class, supports multiple workbooks and custom styles, read and write excel

<?php
/**
* @desc excel接口
* @author mengdejun
*/
interface  IExcel
{
        //导入excel
        public function import($fileName,$convert_callback_function=null);
        //导出excel
        public function export($fileName="excel");
        //添加行
        public function addRow(array $array,$sheet="sheet1");
        //添加表头
        public function addHead(array $array,$sheet="sheet1");
        //添加工作簿
        public function  addSheet($sheet);
        //释放资源
        public function release();
}
?>

 [PHP] Code

. [Picture]e1.jpg
7.
[Picture]e2.jpg e09233e72a88913c4fbff7920f86497b Detailed description: http://php.662p.com/thread-486-1-1.html

http://www.bkjia.com/PHPjc/914483.html

www.bkjia.com

truehttp: //www.bkjia.com/PHPjc/914483.htmlTechArticlephp reads and writes excel class, supports multiple workbooks and custom styles, reads and writes excel?php/*** @desc excel interface* @author mengdejun*/interface IExcel{ //Import excel public function import($fileName...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn