Jackalope\BinaryStreamWrapper::stream_write PHP 메소드

stream_write() 공개 메소드

Make sure the stream is ready and write to the underlying stream.
public stream_write ( string $data ) : integer
$data string the data to write to the stream (utf-8)
리턴 integer
    public function stream_write($data)
    {
        $this->init_stream();
        return fwrite($this->stream, $data);
    }