I have been working with both PHPExcel and Spreadsheet for generating and reading excel files in PHP5 but recently I've switched to PHP 7 that makes many trouble as those excel libs deprecated. I've searched a lot and finally I've found PHPOffice. What if I use Python excel library instead? Will it results better performance compare to using PHP lib?
Asked
Active
Viewed 827 times
3
-
1you can use openpyxl: https://openpyxl.readthedocs.io/en/stable/#module-openpyxl and as they say: All kudos to the PHPExcel team as openpyxl was initially based on PHPExcel. – Mohammad Torkashvand Oct 17 '18 at 06:16
-
I've already known the library and I've been using this in my application to convert CSV file to excel. thanks anyway. – Fatemeh Rostami Oct 18 '18 at 16:31