Added iconv() to output method

This commit is contained in:
Sergio Melendez
2014-10-07 08:46:14 -05:00
parent 813ef3849e
commit 5e8a5df988

View File

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