Out of memory error when reading a large file
问题 I have a large csv that I want to parse and insert into my database. I have this PHP: $target = '../uploads/'.$f; $handle = fopen($target, "r"); $data = fgetcsv($handle, 0, ","); $rows = array(); while ($data !== FALSE) { $rows[] = $data; } fclose($handle); if (count($rows)) { foreach ($rows as $key => $value) { echo $value; } } Every time I try to run my script I get this error: Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 35 bytes) Any ideas how to do