Opis\Closure\ClosureStream::stream_read PHP Method

stream_read() public method

public stream_read ( $count )
    public function stream_read($count)
    {
        $value = substr($this->content, $this->pointer, $count);
        $this->pointer += $count;
        return $value;
    }