PhpSigep\Pdf\VariableStream::stream_read PHP Метод

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

public stream_read ( $count )
    function stream_read($count)
    {
        $ret = substr($GLOBALS[$this->varname], $this->position, $count);
        $this->position += strlen($ret);
        return $ret;
    }