|
- <?php
-
-
-
- namespace common\helpers;
-
- use common\logic\Producer\Producer\Wrapper\ProducerManager;
-
- class CSV
- {
- public static function send(string $filename, array $data)
- {
- CSV::downloadSendHeaders($filename);
- echo CSV::array2csv($data);
- die();
- }
-
- public static function array2csv(array &$array)
- {
- $producerManager = ProducerManager::getInstance();
- $separator = $producerManager->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 formatPrice($price)
- {
- return str_replace('.', ',', $price);
- }
- }
|