當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Dir::getParentDir方法代碼示例

本文整理匯總了PHP中Dir::getParentDir方法的典型用法代碼示例。如果您正苦於以下問題:PHP Dir::getParentDir方法的具體用法?PHP Dir::getParentDir怎麽用?PHP Dir::getParentDir使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Dir的用法示例。


在下文中一共展示了Dir::getParentDir方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testExtractFromArchive

 function testExtractFromArchive()
 {
     $result_file = new File(ModuleArchiver::MODULES_ARCHIVE_DIR . "test__category-1_2_3.ffa");
     $this->assertFalse($result_file->exists(), "Il file del modulo non e' stato creato!!");
     ModuleUtils::set_modules_path("/" . FRAMEWORK_CORE_PATH . "tests/modules/fakeroot2/modules/");
     ModuleArchiver::save_as_archive("test", "category");
     ModuleUtils::set_modules_path("/" . FRAMEWORK_CORE_PATH . "tests/modules/fakeroot2/modules_out/");
     ModuleArchiver::extract_from_archive("test__category-1_2_3.ffa");
     $extracted_module_dir = new Dir("/" . FRAMEWORK_CORE_PATH . "tests/modules/fakeroot2/modules_out/test/category/");
     $this->assertTrue($extracted_module_dir->exists(), "La cartella del modulo non e' stata creata!!");
     $module_file = $extracted_module_dir->newFile(AvailableModules::MODULE_DEFINITION_FILE);
     $this->assertTrue($module_file->exists(), "Il file di definizione del modulo non esiste!!");
     $parent_module_dir = $extracted_module_dir->getParentDir();
     $parent_module_dir->delete(true);
     ModuleUtils::set_modules_path("/framework/modules/");
 }
開發者ID:mbcraft,項目名稱:frozen,代碼行數:16,代碼來源:module_archiver_test.php

示例2: testGetParentDir

 function testGetParentDir()
 {
     $d1 = new Dir("/" . FRAMEWORK_CORE_PATH . "tests/io/test_dir/empty_dir");
     $parent = $d1->getParentDir();
     $this->assertEqual(DS . FRAMEWORK_CORE_PATH . "tests/io/test_dir/", $parent->getPath());
 }
開發者ID:mbcraft,項目名稱:frozen,代碼行數:6,代碼來源:plain_dir_test.php


注:本文中的Dir::getParentDir方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。