Jackalope\BinaryStreamWrapper::stream_read PHP 메소드

stream_read() 공개 메소드

Make sure the stream is ready and read from the underlying stream.
public stream_read ( integer $count ) : string
$count integer How many bytes to read from the stream.
리턴 string data from the stream in utf-8 format.
    public function stream_read($count)
    {
        $this->init_stream();
        return fread($this->stream, $count);
    }