You are here

public function VideoRemoteStreamWrapper::stream_stat in Video 8

Same name and namespace in other branches
  1. 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\StreamWrapper

Code

public function stream_stat() {
  return fstat($this->handle);
}