CsvFileLoader.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Translation\Loader;
  11. use Symfony\Component\Translation\Exception\NotFoundResourceException;
  12. /**
  13. * CsvFileLoader loads translations from CSV files.
  14. *
  15. * @author Saša Stamenković <umpirsky@gmail.com>
  16. */
  17. class CsvFileLoader extends FileLoader
  18. {
  19. private string $delimiter = ';';
  20. private string $enclosure = '"';
  21. private string $escape = '\\';
  22. protected function loadResource(string $resource): array
  23. {
  24. $messages = [];
  25. try {
  26. $file = new \SplFileObject($resource, 'rb');
  27. } catch (\RuntimeException $e) {
  28. throw new NotFoundResourceException(sprintf('Error opening file "%s".', $resource), 0, $e);
  29. }
  30. $file->setFlags(\SplFileObject::READ_CSV | \SplFileObject::SKIP_EMPTY);
  31. $file->setCsvControl($this->delimiter, $this->enclosure, $this->escape);
  32. foreach ($file as $data) {
  33. if (false === $data) {
  34. continue;
  35. }
  36. if (!str_starts_with($data[0], '#') && isset($data[1]) && 2 === \count($data)) {
  37. $messages[$data[0]] = $data[1];
  38. }
  39. }
  40. return $messages;
  41. }
  42. /**
  43. * Sets the delimiter, enclosure, and escape character for CSV.
  44. */
  45. public function setCsvControl(string $delimiter = ';', string $enclosure = '"', string $escape = '\\')
  46. {
  47. $this->delimiter = $delimiter;
  48. $this->enclosure = $enclosure;
  49. $this->escape = $escape;
  50. }
  51. }