parseCSV 0.3.1

- Small change to default output settings to
  conform with RFC 4180 (http://rfc.net/rfc4180.html).
  Only the LF (line feed) character was used
  by default to separate rows, rather than
  CRLF (carriage return & line feed).

git-svn-id: http://parsecsv-for-php.googlecode.com/svn/trunk@17 339761fc-0c37-0410-822d-8b8cac1f6a97
This commit is contained in:
zynode
2007-08-31 22:45:22 +00:00
parent e28b3d0f9d
commit 7762e71316
2 changed files with 15 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ class parseCSV {
/*
Class: parseCSV v0.3.0
Class: parseCSV v0.3.1
http://code.google.com/p/parsecsv-for-php/
@@ -123,7 +123,7 @@ class parseCSV {
var $output_encoding = 'ISO-8859-1';
# used by unparse(), save(), and output() functions
var $linefeed = "\n";
var $linefeed = "\r\n";
# only used by output() function
var $output_delimiter = ',';