K
K
Kirill Gorelov2016-12-07 10:45:14
PHP
Kirill Gorelov, 2016-12-07 10:45:14

Writing to csv in the desired encoding in php?

Hello. Guys, I write an array to a csv file, everything is super, BUT in Excel there are bugs, and if you look through notepad, then everything is fine.
To write to a file, use the class

class CSV {

    private $_csv_file = null;

    /**
     * @param string $csv_file  - путь до csv-файла
     */
    public function __construct($csv_file) {
        if (file_exists($csv_file)) { //Если файл существует
            $this->_csv_file = $csv_file; //Записываем путь к файлу в переменную
        }
        else throw new Exception("Файл \"$csv_file\" не найден"); //Если файл не найден то вызываем исключение
    }

    public function setCSV(Array $csv) {
        $handle = fopen($this->_csv_file, "a"); //Открываем csv для до-записи, если указать w, то  ифномация которая была в csv будет затерта

        foreach ($csv as $value) { //Проходим массив
            fputcsv($handle, explode(";", $value), ";"); //Записываем, 3-ий параметр - разделитель поля
        }
        fclose($handle); //Закрываем
    }

    /**
     * Метод для чтения из csv-файла. Возвращает массив с данными из csv
     * @return array;
     */
    public function getCSV() {
        $handle = fopen($this->_csv_file, "r"); //Открываем csv для чтения

        $array_line_full = array(); //Массив будет хранить данные из csv
        while (($line = fgetcsv($handle, 0, ";")) !== FALSE) { //Проходим весь csv-файл, и читаем построчно. 3-ий параметр разделитель поля
            $array_line_full[] = $line; //Записываем строчки в массив
        }
        fclose($handle); //Закрываем файл
        return $array_line_full; //Возвращаем прочтенные данные
    }

}

How to make, what would be written down at once a normal kind?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
DevMan, 2016-12-07
@Kirill-Gorelov

1 empirically find out the encoding you need for Excel.
2 lead to this encoding using iconv.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question