
????????? ?????? - 2018-04-06 15:31:03
Hi, error in example 8 - parse data
$data = file_get_contents('http://www.example.com/example.xlsx');
if ( $xslx = SimpleXLSX::parse( $data, true) ) {
list($num_cols, $num_rows) = $xlsx->dimension(2);
echo $xlsx->sheetName(2).':'.$num_cols.'x'.$num_rows;
} else {
echo SimpleXLSX::parse_error();
}