本文整理汇总了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;
}