Neos\Flow\ResourceManagement\Streams\ResourceStreamWrapper::read PHP Метод

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

This method is called in response to fread() and fgets(). Note: Remember to update the read/write position of the stream (by the number of bytes that were successfully read).
public read ( integer $count ) : string
$count integer How many bytes of data from the current position should be returned.
Результат string If there are less than count bytes available, return as many as are available. If no more data is available, return either FALSE or an empty string.
    public function read($count)
    {
        return fread($this->handle, $count);
    }