微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php目录操作实例代码

代码如下:
PHP
/**
* listdir
*/
header("content-type:text/html;charset=utf-8");

$dirname = "./final/factapplication";

function listdir($dirname) {
$ds = opendir($dirname);
while (false !== ($file = readdir($ds))) {
$path = $dirname.'/'.$file;
if ($file != '.' && $file != '..') {
if (is_dir($path)) {
listdir($path);
} else {
echo $file."
";
}
}
}
closedir($ds);
}
listdir($dirname);

核心:递归的经典应用,以及文件和目录的基本操作。

代码如下:
PHP
/**
* copydir
*/

$srcdir = "../fileupload";
$dstdir = "b";

function copydir($srcdir,$dstdir) {
mkdir($dstdir);
$ds = opendir($srcdir);

while (false !== ($file = readdir($ds))) {
$path = $srcdir."/".$file;
$dstpath = $dstdir."/".$file;
if ($file != "." && $file != "..") {
if (is_dir($path)) {
copydir($path,$dstpath);
} else {
copy($path,$dstpath);
}
}
}
closedir($ds);

}

copydir($srcdir,$dstdir);

核心:copy函数

代码如下:
PHP
/**
* deldir
*/

$dirname = 'a';

function deldir($dirname) {
$ds = opendir($dirname);

while (false !== ($file = readdir($ds))) {
$path = $dirname.'/'.$file;
if($file != '.' && $file != '..') {
if (is_dir($path)) {
deldir($path);
} else {
unlink($path);
}
}
}
closedir($ds); return rmdir($dirname);
} deldir($dirname);

核心:注意unlink删除的是带path的file。

代码如下:
PHP
/**
* dirsize
*/

$dirname = "a";

function dirsize($dirname) {
static $tot;
$ds = opendir($dirname);
while (false !== ($file = readdir($ds))) {
$path = $dirname.'/'.$file;
if ($file != '.' && $file != '..') {
if(is_dir($path)) {
dirsize($path);
} else {
$tot = $tot + filesize($path);
}
}
}
return $tot;
closedir($ds);
}

echo dirsize($dirname);


核心:通过判断$tot在哪里返回,理解递归函数

原文地址:https://www.jb51.cc/php/25075.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐