class@anonymous::stream_read( $count )

Source

public function stream_read(int $count): string
{
    $result = \substr($this->data, $this->position, $count);
    $this->position += \strlen($result);
    return $result;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.