本文整理匯總了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;
}
}