class CsvFileLoader extends FileLoader

CsvFileLoader loads translations from CSV files.

Methods

load(mixed $resource, string $locale, string $domain = 'messages')

Loads a locale.

array
loadResource(string $resource)

No description

setCsvControl(string $delimiter = ';', string $enclosure = '"', string $escape = '\\')

Sets the delimiter, enclosure, and escape character for CSV.

Details

MessageCatalogue load(mixed $resource, string $locale, string $domain = 'messages')

Loads a locale.

Parameters

mixed $resource A resource
string $locale A locale
string $domain The domain

Return Value

MessageCatalogue A MessageCatalogue instance

Exceptions

NotFoundResourceException when the resource cannot be found
InvalidResourceException when the resource cannot be loaded

protected array loadResource(string $resource)

Parameters

string $resource

Return Value

array

Exceptions

InvalidResourceException if stream content has an invalid format

setCsvControl(string $delimiter = ';', string $enclosure = '"', string $escape = '\\')

Sets the delimiter, enclosure, and escape character for CSV.

Parameters

string $delimiter Delimiter character
string $enclosure Enclosure character
string $escape Escape character