php删除一组文件的例子
时间:2021-07-01 10:21:17
帮助过:20人阅读
2,删除一组文件的代码 process.php
- # Take each checked value, and give it a name of $delete
- foreach($_POST['delete'] as $delete){
- # Make sure the file actually exists
- if(file_exists("/location/of/directory/".$delete)){
- # Delete each file
- unlink("/location/of/directory/",$delete);
- }else{
- continue;
- }
- }
- # Return to form.html
- header("Location: form.html");
- ?>
您可能感兴趣的文章:
Php删除指定文件与文件夹的方法
PHP删除N分钟前创建的所有文件的小例子
php实例:批量删除文件夹及文件夹中的文件
删除指定文件夹中所有文件的php代码
删除多级目录的php自定义函数
php递归删除文件与目录的代码
php递归删除目录及多级子目录下所有文件的代码
php递归创建和删除文件夹的代码
php递归删除目录的例子 |