从Excel工作表检索数据到网页

时间:2015-07-24 14:49:57

标签: php phpexcel

如何检索或获取excel文件中存储的数据,这些数据返回先前存储在Excel工作表中的网页上。

1 个答案:

答案 0 :(得分:0)

阅读PHPExcel文档,查看示例....加载Excel文件并使用HTML Writer生成网页标记....它需要大约8行代码

include 'PHPExcel.php';

$fileType = 'Excel5';
$fileName = 'testFile.xls';

// Read the file
$objReader = PHPExcel_IOFactory::load($fileName);

// Write the file
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'HTML');
$objWriter->save('php://output');