You are here

public function DrupalRemoteStreamWrapper::stream_tell in Remote Stream Wrapper 7

Support for ftell().

Return value

The current offset in bytes from the beginning of file.

Overrides StreamWrapperInterface::stream_tell

See also

http://php.net/manual/en/streamwrapper.stream-tell.php

File

./remote_stream_wrapper.inc, line 258

Class

DrupalRemoteStreamWrapper
Stream wrapper to support local files.

Code

public function stream_tell() {
  return $this->stream_pointer;
}