这篇文章主要为大家详细介绍了php 删除指定目录实现方法,具有一定的参考价值,可以用来参考一下。
对php删除指定的目录感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
<?php
/**
* php删除指定的目录
*
* @param
* @author 四海网 www.q1010.com
* Delete a file, or a folder and its contents (recursive algorithm)
* @param string $dirname Directory to delete
* @return bool Returns TRUE on success, FALSE on failure
*/
function rmdirr($dirname)
{
// Sanity check
if (!file_exists($dirname)) {
return false;
}
// Simple delete for a file
if (is_file($dirname) || is_link($dirname)) {
return unlink($dirname);
}
// Loop through the folder
$dir = dir($dirname);
while (false !== $entry = $dir->read()) {
// Skip pointers
if ($entry == '.' || $entry == '..') {
continue;
}
// Recurse
rmdirr($dirname . DIRECTORY_SEPARATOR . $entry);
}
// Clean up
$dir->close();
return rmdir($dirname);
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/629-0.html
注:关于php 删除指定目录实现方法的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:删除目录
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。