asimlqt / php-google-spreadsheet-client

A PHP library for accessing and manipulating Google Spreadsheets
Other
544 stars 152 forks source link

PHP Warning causing subsequent Fatal #181

Open aviaialon opened 7 years ago

aviaialon commented 7 years ago

This warning happens with large sheets or sheets with larger formulas:

PHP Warning:  SimpleXMLElement::__construct(): Entity: line 1: parser error : internal error: Huge input lookup in vendor/asimlqt/php-google-spreadsheet-client/src/Google/Spreadsheet/Worksheet.php on line 156

To fix this, on line 156 of vendor/asimlqt/php-google-spreadsheet-client/src/Google/Spreadsheet/Worksheet.php, please change the following:

return new CellFeed(new \SimpleXMLElement($res));

to:

return new CellFeed(new \SimpleXMLElement($res, LIBXML_COMPACT | LIBXML_PARSEHUGE));

Thanks!