Jackalope\BinaryStreamWrapper::stream_tell PHP Method

stream_tell() public method

Make sure the stream is ready and specify the position in the stream.
public stream_tell ( )
    public function stream_tell()
    {
        $this->init_stream();
        return ftell($this->stream);
    }