#==============================================================================#
+------------------+
| phpCSV Changelog |
+------------------+
Date Version Description of Change
20060613 0.3 Fixed a bug with fgetcsv() not having the string
encapsulation parameter in versions < 4.3.0. The
class will now check the version of php being used
and if the string encapsulation parameter is not
present then the class will use the default double
quoted text as the encapsulation string.
20060601 0.2 Removed the file handling functionality from the class
as this is now handled by the file.class.php script.
Added the methods for setting the first row contains
column headings.
Fixed the bug with PHP memory problems. The fix for
this was to allow record paging from the class and
the result is the class can handle reading > 70,000
rows of data in chunks of 1,000 at a time in under a
few seconds. Previously this caused time outs and
memory overflows.
Improved the structure of the code and fixed a few
minor bugs.
20060205 0.1 Initial release
#==============================================================================#
|