function DrupalLocalStreamWrapper::url_stat
Support for stat().
Parameters
$uri: A string containing the URI to get information about.
$flags: A bit mask of STREAM_URL_STAT_LINK and STREAM_URL_STAT_QUIET.
Return value
An array with file status, or FALSE in case of an error - see fstat() for a description of this array.
Overrides StreamWrapperInterface::url_stat
See also
http://php.net/manual/streamwrapper.url-stat.php
File
-
includes/
stream_wrappers.inc, line 837
Class
- DrupalLocalStreamWrapper
- Drupal stream wrapper base class for local files.
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);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.