mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
Merge pull request #45 from helpse/patch-1
Added iconv() to output method
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user