function PharStreamWrapper::mkdir

Parameters

string $path:

int $mode:

int $options:

Return value

bool

File

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

Class

PharStreamWrapper

Namespace

TYPO3\PharStreamWrapper

Code

public function mkdir($path, $mode, $options) {
    $this->assert($path, Behavior::COMMAND_MKDIR);
    return $this->invokeInternalStreamWrapper('mkdir', $path, $mode, (bool) ($options & STREAM_MKDIR_RECURSIVE), $this->context);
}

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