You are here

public function OEmbedStreamWrapper::stream_seek in oEmbed 7.0

Same name and namespace in other branches
  1. 7 OEmbedStreamWrapper.inc \OEmbedStreamWrapper::stream_seek()

Support for fseek().

@todo document why this returns false.

Parameters

int $offset: The byte offset to got to.

string $whence: SEEK_SET, SEEK_CUR, or SEEK_END.

Return value

bool TRUE on success

Overrides StreamWrapperInterface::stream_seek

File

./OEmbedStreamWrapper.inc, line 245
Create a oEmbed Stream Wrapper class.

Class

OEmbedStreamWrapper
@file Create a oEmbed Stream Wrapper class.

Code

public function stream_seek($offset, $whence) {
  return FALSE;
}