Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
local
/
wp
/
vendor
/
gettext
/
gettext
/
src
/
Extractors
📤 Upload
📝 New File
📁 New Folder
Close
Editing: CsvDictionary.php
<?php namespace Gettext\Extractors; use Gettext\Translations; use Gettext\Utils\HeadersExtractorTrait; use Gettext\Utils\CsvTrait; /** * Class to get gettext strings from csv. */ class CsvDictionary extends Extractor implements ExtractorInterface { use HeadersExtractorTrait; use CsvTrait; public static $options = [ 'delimiter' => ",", 'enclosure' => '"', 'escape_char' => "\\" ]; /** * {@inheritdoc} */ public static function fromString($string, Translations $translations, array $options = []) { $options += static::$options; $handle = fopen('php://memory', 'w'); fputs($handle, $string); rewind($handle); while ($row = static::fgetcsv($handle, $options)) { list($original, $translation) = $row + ['', '']; if ($original === '') { static::extractHeaders($translation, $translations); continue; } $translations->insert(null, $original)->setTranslation($translation); } fclose($handle); } }
Save
Cancel