Merge pull request #45 from helpse/patch-1

Added iconv() to output method
This commit is contained in:
William Knauss
2014-12-03 12:41:03 -05:00

View File

@@ -869,6 +869,10 @@ class parseCSV {
$entry = array(); $entry = array();
} }
if ($this->convert_encoding) {
$string = iconv($this->input_encoding, $this->output_encoding, $string);
}
return $string; return $string;
} }