You are here

public function ResourceStreamWrapper::stream_tell in D7 Media 6

Support for ftell().

Return value

The current offset in bytes from the beginning of file.

Overrides StreamWrapperInterface::stream_tell

File

resource/ResourceStreamWrapper.inc, line 187

Class

ResourceStreamWrapper
A base class for Resource Stream Wrappers.

Code

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