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

@@ -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;
} }