1
0
mirror of https://e.coding.net/circlecloud/MinecraftAccount.git synced 2024-11-17 00:58:55 +00:00
MinecraftAccount/ThinkPHP/Library/Vendor/TemplateLite/internal/template.destroy_dir.php
j502647092 2003fda7cb 首次提交...
Signed-off-by: j502647092 <jtb1@163.com>
2015-11-01 22:25:03 +08:00

68 lines
1.2 KiB
PHP

<?php
/**
* Template Lite template_destroy_dir template internal module
*
* Type: template
* Name: template_destroy_dir
*/
function template_destroy_dir($file, $id, $dir, &$object)
{
if ($file == null && $id == null)
{
if (is_dir($dir))
{
if($d = opendir($dir))
{
while(($f = readdir($d)) !== false)
{
if ($f != '.' && $f != '..')
{
template_rm_dir($dir.$f.DIRECTORY_SEPARATOR);
}
}
}
}
}
else
{
if ($id == null)
{
$object->template_dir = $object->_get_dir($object->template_dir);
$name = ($object->encode_file_name) ? md5($object->template_dir.$file).'.php' : str_replace(".", "_", str_replace("/", "_", $file)).'.php';
@unlink($dir.$name);
}
else
{
$_args = "";
foreach(explode('|', $id) as $value)
{
$_args .= $value.DIRECTORY_SEPARATOR;
}
template_rm_dir($dir.DIRECTORY_SEPARATOR.$_args);
}
}
}
function template_rm_dir($dir)
{
if (is_file(substr($dir, 0, -1)))
{
@unlink(substr($dir, 0, -1));
return;
}
if ($d = opendir($dir))
{
while(($f = readdir($d)) !== false)
{
if ($f != '.' && $f != '..')
{
template_rm_dir($dir.$f.DIRECTORY_SEPARATOR, $object);
}
}
@rmdir($dir.$f);
}
}
?>