PHP Read xlsx Excel 2007 file

user255392 picture user255392 · Mar 27, 2010 · Viewed 96.9k times · Source

I am using oleread to read uploaded xls file. But I am not able to read xlsx files saved in excel-2007 format. can someone help me on how to read xlsx file in PHP.

Answer

Sergey Shuchkin picture Sergey Shuchkin · Dec 8, 2011
<?php
require_once 'SimpleXLSX.php';

if ( $xlsx = SimpleXLSX::parse('pricelist.xlsx') ) {
  print_r( $xlsx->rows() );
} else {
  echo SimpleXLSX::parseError();
}
?>

SimpleXLSX