Ratings | | Unique User Downloads | | Download Rankings |
Not enough user ratings | | Total: 433 | | All time: 6,300 This week: 46 |
|
Description | | Author |
This class can convert a CSV file to have data in UTF-8 encoding.
It takes the name of a file with data in CSV format, detects the encoding of the text data that it contains and converts it to UTF-8 in case the data is not already in this encoding.
The resulting data can be stored in the same file or another file with a given name. Innovation Award
 February 2019
Number 10 |
Some applications need to process text read from CSV files. Nowadays modern applications handle text encoded using UTF-8.
When the a CSV file that an application needs to process has text that is not encoded using UTF-8, it needs to be converted.
This package can perform this task, so applications do not need to perform additional text encoding conversion.
Manuel Lemos |
| |
 |
|
Innovation award
 Nominee: 4x |
|
Recommendations
Example
<?php
require_once("convert_csv_to_utf8.php");
$cv = new convert_csv_to_utf8('csvsimple.csv','csvsimplefixed.csv');
|
Details
csv_file_to_utf8_encoding
convert CSV file encoding to utf-8
usage
$cv = new convert_csv_to_utf8($file_address,$saveto=false);
-
file_address : csv file address
-
saveto (optional) : save fixed csv file to location . if not set fixed csv file will be replaced with original csv
### return : return converted/true if successfully convert/fixed csv file , return filenotfind/false if file is not exist
convert_encoding
$string = convert_csv_to_utf8::convert_to_utf8($string, $encoding);
-
string : your text
-
encoding : your text encoding
### return : return encoded text to utf-8
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.