本文整理汇总了PHP中Dir::getSingleSubdir方法的典型用法代码示例。如果您正苦于以下问题:PHP Dir::getSingleSubdir方法的具体用法?PHP Dir::getSingleSubdir怎么用?PHP Dir::getSingleSubdir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Dir
的用法示例。
在下文中一共展示了Dir::getSingleSubdir方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testProps
function testProps()
{
$storage_test_root = "/" . FRAMEWORK_CORE_PATH . "tests/io/storage_dir/";
Storage::set_storage_root($storage_test_root);
$test_file = new File("/" . FRAMEWORK_CORE_PATH . "tests/io/file_props_test.php");
$this->assertFalse($test_file->hasStoredProps(), "Il file ha delle proprieta' con lo storage vuoto!!");
$storage = $test_file->getStoredProps();
$storage->add("test", array("hello" => 1, "world" => "good"));
$this->assertTrue($test_file->hasStoredProps(), "Il file storage delle proprieta' non e' stato creato!!");
$file_path = $test_file->getPath();
$sum = md5($file_path);
$store_subdir = "_" . substr($sum, 0, 1);
$storage_test_root_dir = new Dir($storage_test_root);
$real_store_dir = $storage_test_root_dir->getSingleSubdir();
$all_dirs = $real_store_dir->listFiles();
$props_file_dir = $all_dirs[0];
$this->assertEqual($props_file_dir->getName(), $store_subdir, "La directory creata non corrisponde!!");
$final_stored_path = new File($real_store_dir->getPath() . $props_file_dir->getName() . DS . $sum . ".ini");
$this->assertTrue($final_stored_path->exists(), "Il file finale delle props non e' stato trovato!!");
$test_file->deleteStoredProps();
$this->assertFalse($test_file->hasStoredProps(), "Il file delle proprieta' non e' stato eliminato!!");
$all_files = $real_store_dir->listFiles();
foreach ($all_files as $f) {
$f->delete(true);
}
Storage::set_storage_root(Storage::get_default_storage_root());
}
示例2: testGetSingleSubdirFailSingleFile
function testGetSingleSubdirFailSingleFile()
{
$dir = new Dir("/" . FRAMEWORK_CORE_PATH . "tests/io/test_dir/single_subdir/blablablax/");
try {
$sub_dir = $dir->getSingleSubdir();
$this->fail("Il metodo getSingleSubdir non ha lanciato l'eccezione prevista.");
} catch (Exception $ex) {
}
}
示例3: get_verified_storage
private static function get_verified_storage()
{
$protected_storage_dir = new Dir(self::$storage_root);
if (!$protected_storage_dir->exists()) {
throw new IOException("La cartella dello storage non esiste : " . self::$storage_root);
}
if (count($protected_storage_dir->listFiles()) > 1) {
throw new IOException("Lo storage non è valido.");
}
if ($protected_storage_dir->isEmpty()) {
$protected_storage_dir->newRandomSubdir();
}
return $protected_storage_dir->getSingleSubdir();
}