SimpleExcel PHP - Excel文档处理库
这是一个简单而强大的PHP类库,支持包括生成和解析Microsoft Excel XML/CSV 格式的文件。
它可以一次处理一行中所有单元格或单个单元格。对于列也具有同样的方法。使用示例:
<?php use SimpleExcel\SimpleExcel; require_once('../your/project/lib/SimpleExcel/SimpleExcel.php'); // load the main class file $excel = new SimpleExcel('xml'); // instantiate new object (will automatically construct the parser) $excel->parser->loadFile('example.xml'); // load an XML file from server to be parsed $foo = $excel->parser->getField(); // get complete array of the table $bar = $excel->parser->getRow(3); // get specific array from the specified row (3rd row) $baz = $excel->parser->getColumn(4); // get specific array from the specified column (4th row) $qux = $excel->parser->getCell(2,1); // get specific data from the specified cell (2nd row in 1st column) print_r($foo); // echo the array ?>
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!