php读写excel类,支持多工作簿和自定义样式,读写excel
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <?php
interface IExcel
{
public function import( $fileName , $convert_callback_function =null);
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();
}
?>
|
Nach dem Login kopieren
[PHP]代码
. [图片] e1.jpg
7. [图片] e2.jpg 
详细说明:http://php.662p.com/thread-486-1-1.html
http://www.bkjia.com/PHPjc/914483.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/914483.htmlTechArticlephp读写excel类,支持多工作簿和自定义样式,读写excel ?php/*** @desc excel接口* @author mengdejun*/interface IExcel{ //导入excel public function import($fileName...