CsvFileLoader.php 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 $delimiter = ';';
  20. private $enclosure = '"';
  21. private $escape = '\\';
  22. /**
  23. * {@inheritdoc}
  24. */
  25. protected function loadResource($resource)
  26. {
  27. $messages = array();
  28. try {
  29. $file = new \SplFileObject($resource, 'rb');
  30. } catch (\RuntimeException $e) {
  31. throw new NotFoundResourceException(sprintf('Error opening file "%s".', $resource), 0, $e);
  32. }
  33. $file->setFlags(\SplFileObject::READ_CSV | \SplFileObject::SKIP_EMPTY);
  34. $file->setCsvControl($this->delimiter, $this->enclosure, $this->escape);
  35. foreach ($file as $data) {
  36. if ('#' !== substr($data[0], 0, 1) && 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. * @param string $delimiter Delimiter character
  46. * @param string $enclosure Enclosure character
  47. * @param string $escape Escape character
  48. */
  49. public function setCsvControl($delimiter = ';', $enclosure = '"', $escape = '\\')
  50. {
  51. $this->delimiter = $delimiter;
  52. $this->enclosure = $enclosure;
  53. $this->escape = $escape;
  54. }
  55. }