public function VideoRemoteStreamWrapper::stream_stat in Video 8
Same name and namespace in other branches
- 8.2 src/StreamWrapper/VideoRemoteStreamWrapper.php \Drupal\video\StreamWrapper\VideoRemoteStreamWrapper::stream_stat()
Support for fstat().
Return value
bool An array with file status, or FALSE in case of an error - see fstat() for a description of this array.
Overrides PhpStreamWrapperInterface::stream_stat
See also
http://php.net/manual/streamwrapper.stream-stat.php
File
- src/
StreamWrapper/ VideoRemoteStreamWrapper.php, line 307
Class
- VideoRemoteStreamWrapper
- Defines a video read only stream wrapper class.
Namespace
Drupal\video\StreamWrapperCode
public function stream_stat() {
return fstat($this->handle);
}