Home >php教程 >php手册 >php读写excel类,支持多工作簿和自定义样式,读写excel

php读写excel类,支持多工作簿和自定义样式,读写excel

WBOY
WBOYOriginal
2016-06-13 09:20:44833browse

php读写excel类,支持多工作簿和自定义样式,读写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]代码

[图片] e1.jpg     

7. [图片] e2.jpg    

详细说明:http://php.662p.com/thread-486-1-1.html

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