首页
IT
登录
6mi
u
盘
搜
搜 索
IT
remove.php
remove.php
xiaoxiao
2025-07-14
8
<?php
/**
* Created by PhpStorm.
* User: dllo
* Date: 16/8/9
* Time: 下午5:49
*/
header(
"Content-type:text/html;charset=utf-8"
);
function
removeDir(
$path
){
if
(is_dir(
$path
)){
$arr
= scandir(
$path
);
if
(count(
$arr
) >
2
){
for
(
$i
=
2
;
$i
< count(
$arr
);
$i
++){
$url
=
$path
.
"/"
.
$arr
[
$i
];
removeDir(
$url
);
}
}
rmdir(
$path
);
}
else
{
unlink(
$path
);
}
}
转载请注明原文地址: https://ju.6miu.com/read-1300682.html
最新回复
(
0
)