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

WBOY
Release: 2016-07-13 10:13:40
Original
1099 people have browsed it

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();
}
?>
Copy after login

 [PHP] Code

. [Picture]e1.jpg
7.
[Picture]e2.jpg 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...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!