|
- <?php
-
-
-
- namespace common\helpers;
-
- use domain\Producer\Producer\ProducerModule;
-
- class CSV
- {
- public static function send(string $filename, array $data)
- {
- self::downloadSendHeaders($filename);
- echo self::array2csv($data);
- die();
- }
-
- public static function csv2array(string $filename = '', string $delimiter = ';')
- {
- if(!file_exists($filename) || !is_readable($filename)) {
- return FALSE;
- }
-
- $header = null;
- $data = array();
- if (($handle = fopen($filename, 'r')) !== FALSE) {
- while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
- if(!$header) {
- $header = $row;
- }
- else {
-
- $data[] = $row;
- }
- }
- fclose($handle);
- }
-
- return $data;
- }
-
- public static function array2csv(array &$array)
- {
- $producerModule = ProducerModule::getInstance();
- $separator = $producerModule->getConfig('option_csv_separator') ?: ';';
-
- if (count($array) == 0) {
- return null;
- }
- ob_start();
- $df = fopen("php://output", 'w');
-
-
- foreach ($array as $row) {
- fputcsv($df, $row, $separator);
- }
- fclose($df);
- return ob_get_clean();
- }
-
- public static function downloadSendHeaders($filename)
- {
-
- $now = gmdate("D, d M Y H:i:s");
- header("Expires: Tue, 03 Jul 2001 06:00:00 GMT");
- header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate");
- header("Last-Modified: {$now} GMT");
-
-
- header("Content-Type: application/force-download");
- header("Content-Type: application/octet-stream");
- header("Content-Type: application/download");
-
-
- header("Content-Disposition: attachment;filename={$filename}");
- header("Content-Transfer-Encoding: binary");
- }
-
- public static function formatNumber($price): string
- {
- return str_replace('.', ',', $price);
- }
-
- public static function formatPhone($phone): string
- {
- return "'".$phone;
- }
-
- }
|