![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/CoreBundle/Helper/ |
<?php namespace Mautic\CoreBundle\Helper; class CsvHelper { /** * @param string $filename * @param string $delimiter * * @return array */ public static function csv_to_array($filename = '', $delimiter = ',') { if (!file_exists($filename) || !is_readable($filename)) { return false; } $header = null; $data = []; if (false !== ($handle = fopen($filename, 'r'))) { while (false !== ($row = fgetcsv($handle, 1000, $delimiter))) { if (!$header) { $header = $row; } else { $data[] = array_combine($header, $row); } } fclose($handle); } return $data; } public static function sanitizeHeaders(array $headers): array { return array_map('trim', $headers); } public static function convertHeadersIntoFields(array $headers): array { sort($headers); $importedFields = []; foreach ($headers as $header) { $fieldName = strtolower(InputHelper::alphanum($header, false, '_')); // Skip columns with empty names as they cannot be mapped. if (!empty($fieldName)) { $importedFields[$fieldName] = $header; } } return $importedFields; } }