本文整理匯總了PHP中Y::recursiveRemDir方法的典型用法代碼示例。如果您正苦於以下問題:PHP Y::recursiveRemDir方法的具體用法?PHP Y::recursiveRemDir怎麽用?PHP Y::recursiveRemDir使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Y
的用法示例。
在下文中一共展示了Y::recursiveRemDir方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: recursiveRemDir
function recursiveRemDir($directory, $empty = FALSE)
{
if (substr($directory, -1) == '/') {
$directory = substr($directory, 0, -1);
}
if (!file_exists($directory) || !is_dir($directory)) {
return FALSE;
} elseif (is_readable($directory)) {
$handle = opendir($directory);
while (FALSE !== ($item = readdir($handle))) {
if ($item != '.' && $item != '..') {
$path = $directory . '/' . $item;
if (is_dir($path)) {
Y::recursiveRemDir($path);
} else {
unlink($path);
}
}
}
closedir($handle);
if ($empty == FALSE) {
if (!rmdir($directory)) {
return FALSE;
}
}
}
return TRUE;
}
示例2: flushUploadDir
public function flushUploadDir()
{
$session = new CHttpSession();
$session->open();
$folder = $_SERVER['DOCUMENT_ROOT'] . '/upload/tmp/' . $session->SessionID;
Y::recursiveRemDir($folder);
}
示例3: actionConvertFoldersbug
public function actionConvertFoldersbug()
{
ini_set('memory_limit', '1024M');
set_time_limit(0);
$holes = Holes::model()->findAll();
foreach ($holes as $hole) {
if (is_dir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/original/' . $hole->ID)) {
if (!is_dir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder)) {
mkdir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder);
}
if (!is_dir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/original')) {
mkdir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/original');
}
if (!is_dir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/original/' . $hole->ID)) {
mkdir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/original/' . $hole->ID);
}
Y::copyr($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/original/' . $hole->ID, $_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/original/' . $hole->ID);
Y::recursiveRemDir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/original/' . $hole->ID, false);
if (!is_dir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/medium')) {
mkdir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/medium');
}
if (!is_dir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/medium/' . $hole->ID)) {
mkdir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/medium/' . $hole->ID);
}
Y::copyr($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/medium/' . $hole->ID, $_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/medium/' . $hole->ID);
Y::recursiveRemDir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/medium/' . $hole->ID, false);
if (!is_dir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/small')) {
mkdir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/small');
}
if (!is_dir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/small/' . $hole->ID)) {
mkdir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/small/' . $hole->ID);
}
Y::copyr($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/small/' . $hole->ID, $_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/' . $hole->bigFolder . '/small/' . $hole->ID);
Y::recursiveRemDir($_SERVER['DOCUMENT_ROOT'] . '/upload/st1234/small/' . $hole->ID, false);
}
}
}