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


PHP FileUtils::removeDir方法代碼示例

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


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

示例1: define

define("COLORSHEME_HTML", <<<HTML
<center><a href=""
\tonclick="return popupSheme('http://www.poligrafi.com/new/popup_materials.html');">
\tВыбор цветов и материалов
</a></center>
HTML
);
$db =& DB::connect(CONN_DSN);
if (PEAR::isError($db)) {
    print $db->getMessage();
    exit;
}
$pathBuilder = new HtmlPathBuilder($db, CMD_SEL_CATEGORY);
$pathBuilder->basePath = BASE_URL;
$pathBuilder->linkAttrs = "style='color:#0265a4; text-decoration:underline;'";
FileUtils::removeDir(OUTPUT_DIR);
mkdir(OUTPUT_DIR);
generateCategory();
print "Generating finished.\n";
/*
function getCategoriesCode($rows) {
	$res = "";

	foreach ($rows as $row) {
		$res .= $row->name . " | ";
	}

	return $res;
}
*/
function addEmptyItems(&$items, $columns)
開發者ID:rivetweb,項目名稱:old-auto-catalog,代碼行數:31,代碼來源:Generator.php

示例2: removeDir

 /**
  * –екурсивное удаление директории
  * @access static
  */
 function removeDir($root)
 {
     if (!is_dir($root)) {
         return;
     }
     $files = dir($root);
     while (($f = $files->read()) !== false) {
         if ($f == "." || $f == "..") {
             continue;
         }
         $f = $root . "/" . $f;
         if (is_file($f)) {
             unlink($f);
         } else {
             if (is_dir($f)) {
                 FileUtils::removeDir($f);
             }
         }
     }
     $files->close();
     rmdir($root);
 }
開發者ID:rivetweb,項目名稱:old-auto-catalog,代碼行數:26,代碼來源:FileUtils.php

示例3: deleteGood

 public static function deleteGood($id)
 {
     $dbPref = new DBPreferencesType();
     $catalogPath = $dbPref->getPreference(Constants::CATALOG_PATH)[DB::TABLE_PREFERENCES__VALUE];
     $goodsType = new DBGoodsType();
     $code = $goodsType->getCode($id);
     //remove directory with images
     FileUtils::removeDir($catalogPath . $code);
     $infoRemove = $goodsType->delete($id);
     return $infoRemove;
 }
開發者ID:gingerP,項目名稱:shop,代碼行數:11,代碼來源:GoodsService.php


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