nuovo / spreadsheet-reader

A PHP spreadsheet reader (Excel XLS and XLSX, OpenOffice ODS, and variously separated text files) with a singular goal of getting the data out, efficiently
http://www.nuovo.lv/
Other
674 stars 498 forks source link

different constructor style #172

Open tresaresa opened 3 years ago

tresaresa commented 3 years ago

in file excel_reader2.php the constructor is Spreadsheet_Excel_Reader() in file SpreadsheetReader.php the constructor is __construct()

it seems like the constructor Spreadsheet_Excel_Reader() cannot be executed in php8, and new Spreadsheet_Excel_Reader() returns null. after i created a function called __construct() with the same content, everything solved.