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