本文整理汇总了PHP中Shell::mkdir方法的典型用法代码示例。如果您正苦于以下问题:PHP Shell::mkdir方法的具体用法?PHP Shell::mkdir怎么用?PHP Shell::mkdir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Shell
的用法示例。
在下文中一共展示了Shell::mkdir方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: function
<?php
/**
* Cache utilities
*/
Shell::alias('clearCache', function () {
return Shell::sequence(Shell::rm('-rf', APP_DIR . '/cache/*'), Shell::mkdir(APP_DIR . '/cache/objects', APP_DIR . '/cache/views'));
});
CLI::on('cache :action', function ($action) {
switch ($action) {
case 'clear':
Shell::clearCache()->run();
break;
default:
echo "Cache utilities.", PHP_EOL;
echo "- Available actions: clear", PHP_EOL;
break;
}
});
示例2: test_mkdir
public function test_mkdir()
{
// Will create sub-directory based on file name in /tmp
$path = '/tmp/' . __CLASS__;
try {
$shell = new Shell();
$success = $shell->mkdir($path, 0777, true);
$this->assertTrue($success, "Could not mkdir {$path}");
$this->assertTrue(is_dir($path));
$failure = @$shell->mkdir($path, 0777, true);
$this->assertFalse($failure);
@rmdir($path);
// Clean up
} catch (\Exception $e) {
@rmdir($path);
// Clean up
throw $e;
}
}