Prado\I18N\core\Gettext\TGettext::toArray PHP Метод

toArray() публичный Метод

Returns meta info and strings as an array of a structure like that: array( 'meta' => array( 'Content-Type' => 'text/plain; charset=iso-8859-1', 'Last-Translator' => 'Michael Wallner ', 'PO-Revision-Date' => '2004-07-21 17:03+0200', 'Language-Team' => 'German ', ), 'strings' => array( 'All rights reserved' => 'Alle Rechte vorbehalten', 'Welcome' => 'Willkommen', ... ) )
См. также: fromArray()
public toArray ( ) : array
Результат array
    function toArray()
    {
        return array('meta' => $this->meta, 'strings' => $this->strings);
    }