Function DebugFsStreamWrapper->mkdir

Definitions

sources/debug_fs.php

  • {{creates-file}}}}
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: bool
  • Flags:

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$path PATH No No required parameter N/A N/A The path to the directory to make
$mode integer No No required parameter N/A N/A The mode (e.g. 0777)
$options integer No No required parameter N/A N/A Bitmask options

Returns

  • Success status
  • Type: boolean
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * {{creates-file}}}}
 *
 * @param  PATH $path The path to the directory to make
 * @param  integer $mode The mode (e.g. 0777)
 * @param  integer $options Bitmask options
 * @return boolean Success status
 */

public function mkdir(string $path, int $mode, int $options) : bool