Prado\I18N\core\Gettext\TGettext_MO::_readStr PHP Method

_readStr() public method

_readStr
public _readStr ( array $params ) : string
$params array associative array with offset and length of the string
return string
    function _readStr($params)
    {
        fseek($this->_handle, $params['offset']);
        return $this->_read($params['length']);
    }