public function ResourceReadOnlyStreamWrapper::stream_stat in D7 Media 6
Support for fstat().
Return value
An array with file status, or FALSE in case of an error - see fstat() for a description of this array.
Overrides StreamWrapperInterface::stream_stat
File
- resource/
ResourceReadOnlyStreamWrapper.inc, line 198
Class
- ResourceReadOnlyStreamWrapper
- A base class for Resource Stream Wrappers.
Code
public function stream_stat() {
return FALSE;
}