public function oEmbedStream::stream_seek in oEmbed 8
Support for fseek().
@todo document why this returns false.
Parameters
int $offset: The byte offset to got to.
int $whence: SEEK_SET, SEEK_CUR, or SEEK_END.
Return value
bool TRUE on success TRUE on success
Overrides PhpStreamWrapperInterface::stream_seek
File
- src/
StreamWrapper/ oEmbedStream.php, line 187 - Create a oEmbed Stream Wrapper class.
Class
- oEmbedStream
- @file Create a oEmbed Stream Wrapper class.
Namespace
Drupal\oembed\StreamWrapperCode
public function stream_seek($offset, $whence = SEEK_SET) {
return FALSE;
}