|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-09-07 11:27 UTC] sniper@php.net
[2005-09-07 11:27 UTC] sniper@php.net
[2005-09-15 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 00:00:01 2025 UTC |
Description: ------------ compare Bug # 13598 I tried to import about 3100 records and the programme failed with a lack of memory. while($array = fgetcsv($handle,1024,$CONFIG['delimiter']) and !$dbError) { //Code } However, when initializing the array, the programme works just fine: $array = array(); while($array = fgetcsv($handle,1024,$CONFIG['delimiter']) and !$dbError) { //Code }