public function OEmbedStreamWrapper::stream_read in oEmbed 7
Same name and namespace in other branches
- 7.0 OEmbedStreamWrapper.inc \OEmbedStreamWrapper::stream_read()
Support for fread(), file_get_contents() etc.
Parameters
int $count: Maximum number of bytes to be read.
Return value
bool The string that was read, or FALSE in case of an error.
Overrides StreamWrapperInterface::stream_read
File
- ./
OEmbedStreamWrapper.inc, line 203 - Create a oEmbed Stream Wrapper class.
Class
- OEmbedStreamWrapper
- @file Create a oEmbed Stream Wrapper class.
Code
public function stream_read($count) {
return FALSE;
}