public function ResourceReadOnlyStreamWrapper::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/
ResourceReadOnlyStreamWrapper.inc, line 187
Class
- ResourceReadOnlyStreamWrapper
- A base class for Resource Stream Wrappers.
Code
public function stream_tell() {
return FALSE;
}