当前位置: 首页>>代码示例>>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;未经允许,请勿转载。