编程语言
首页 > 编程语言> > PHPExcel和PhpSpreadsheet之间的主要区别是什么?

PHPExcel和PhpSpreadsheet之间的主要区别是什么?

作者:互联网

PHPOffice的项目中,有两个与电子表格文件格式相关的项目:

PHPExcel

PHPExcel is a library written in pure PHP and providing a set of classes that allow you to write to and read from different spreadsheet file formats, like Excel (BIFF) .xls, Excel 2007 (OfficeOpenXML) .xlsx, CSV, Libre/OpenOffice Calc .ods, Gnumeric, PDF, HTML, … This project is built around Microsoft’s OpenXML standard and PHP.

PhpSpreadsheets

PhpSpreadsheet is a library written in pure PHP and providing a set of classes that allow you to read from and to write to different spreadsheet file formats, like Excel and LibreOffice Calc.

它们之间的主要区别是什么?

解决方法:

PHPExcel已被维护为用于处理电子表格文件多年的库,并且因为保留对旧版本PHP(> = 5.2)的支持而受到束缚,因此很难继续前进并改进它.它是一个稳定的库,但不会再进一步​​开发.

PHPSpreadsheet是PHPExcel的最新版本,其中大部分内容已经过重写,以利用PHP的新功能.在保留PHPExcel的所有功能的同时,它需要5.5的最低PHP版本(很快就会被删除以至少需要5.6).

库名称的更改是为了反映它不仅限于Excel电子表格;但支持更广泛的电子表格文件格式.

标签:php,phpexcel,phpspreadsheet,phpoffice
来源: https://codeday.me/bug/20191006/1859198.html