public function ResourceStreamWrapper::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/
ResourceStreamWrapper.inc, line 198
Class
- ResourceStreamWrapper
- A base class for Resource Stream Wrappers.
Code
public function stream_stat() {
return fstat($this->handle);
}