function PharStreamWrapper::url_stat

Parameters

string $path:

int $flags:

Return value

array|false

File

misc/typo3/phar-stream-wrapper/src/PharStreamWrapper.php, line 395

Class

PharStreamWrapper

Namespace

TYPO3\PharStreamWrapper

Code

public function url_stat($path, $flags) {
    $this->assert($path, Behavior::COMMAND_URL_STAT);
    $functionName = $flags & STREAM_URL_STAT_QUIET ? '@stat' : 'stat';
    return $this->invokeInternalStreamWrapper($functionName, $path);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.