W3cubDocs

/Drupal 8

public function LocalStream::url_stat

public LocalStream::url_stat($uri, $flags)

Support for stat().

Parameters

string $uri: A string containing the URI to get information about.

int $flags: A bit mask of STREAM_URL_STAT_LINK and STREAM_URL_STAT_QUIET.

Return value

array An array with file status, or FALSE in case of an error - see fstat() for a description of this array.

Overrides PhpStreamWrapperInterface::url_stat

See also

http://php.net/manual/streamwrapper.url-stat.php

File

core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 495

Class

LocalStream
Defines a Drupal stream wrapper base class for local files.

Namespace

Drupal\Core\StreamWrapper

Code

public function url_stat($uri, $flags) {
  $this->uri = $uri;
  $path = $this->getLocalPath();
  // Suppress warnings if requested or if the file or directory does not
  // exist. This is consistent with PHP's plain filesystem stream wrapper.
  if ($flags & STREAM_URL_STAT_QUIET || !file_exists($path)) {
    return @stat($path);
  }
  else {
    return stat($path);
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!StreamWrapper!LocalStream.php/function/LocalStream::url_stat/8.1.x