How to read large data from Excel files (14MB+) in PHP? -
how read large data excel files (14mb+) in phpexcel? have done excelreader says fatal error: allowed memory size of 134217728 bytes exhausted (tried allocate 36 bytes) in e:\xampp\htdocs\projects\pin\library\excel_reader2.php on line 1508
can 1 give me link read excel large data?
increase memory php can use.
edit php.ini , change memory_limit option, example:
memory_limit = 128m ; /* change 128m needs */
also, read related post: ini_set("memory_limit") in php 5.3.3 not working @ all
Comments
Post a Comment