public function OEmbedStreamWrapper::stream_tell in oEmbed 7
Same name and namespace in other branches
- 7.0 OEmbedStreamWrapper.inc \OEmbedStreamWrapper::stream_tell()
Support for ftell().
@todo document why this returns false.
Return value
bool The current offset in bytes from the beginning of file.
Overrides StreamWrapperInterface::stream_tell
File
- ./
OEmbedStreamWrapper.inc, line 269 - Create a oEmbed Stream Wrapper class.
Class
- OEmbedStreamWrapper
- @file Create a oEmbed Stream Wrapper class.
Code
public function stream_tell() {
return FALSE;
}