国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > PHP > 正文

使用PHP遍歷文件目錄與清除目錄中文件的實現詳

2020-03-22 19:10:46
字體:
來源:轉載
供稿:網友
今天無聊中練習了一下PHP遍歷文件目錄的程序,編寫了以下兩個程序,不過質量不是很好,輕拍~~~
1、清除PHP緩存文件
復制代碼 代碼如下:
?php

function read_dir($dir,$file)
{
$a =strpos($file,".php");

if($a 0)
{
unlink($dir . $file);
echo "delete $dir$file br
return true;
}

if(strpos($file,".") === 0 || strpos($file,".") !== false ) return true;

if(strpos($file,".") === false || strpos($dir,"/") === false)
{
$dir = $dir . $file . "/";
if(!is_dir($dir)) return false;
$dh = opendir($dir);
while(($file = readdir($dh)) != false)
{
read_dir($dir,$file); //遞歸調用
}
}
}

function clear_caches()
{
$dir = "./temp/"; //要清除的PHP緩存文件目錄

if(!is_dir($dir)) die("It is not a dir");
$dh = opendir($dir);

while(($file = readdir($dh) )!=false)
{
//var_dump($file);
read_dir($dir,$file);

}
}


?

2、遍歷目錄中所有文件
復制代碼 代碼如下:
html

head
meta http-enquiv="Content-Type" content="text/html;charset=gb2312"
title 查看目錄 /title
/head

body
table width="600" align="center"
tr
th width="50%" 文件名 /th
th width="25%" 修改時間 /th
th width="25%" 文件大小(k) /th
/tr


?php

//$dir = "./admin/";
$dir = "c:/";
$up_dir = "上級目錄";
$up_url = $dir;

if(isset($_REQUEST['act']) && $_REQUEST['act']=='list_dir')
{
if(emptyempty($_REQUEST['dir']))
{
$up_dir="目錄為空!";
}
$dir = isset($_REQUEST['dir']) ? $_REQUEST['dir'] : $dir;

}
if(!is_dir($dir))
{
$up_dir="無效目錄!";
}

?

tr
td colspan="3"
?php

if(strpos($up_dir,"上級目錄")!==false)
{
//if($up_url=="") echo $up_dir;
if($dir != "./admin/")
{
$up_url = substr($dir,0,-1);
$k = strrpos($up_url,"/");
$up_url = substr($up_url,0,$k-strlen($up_url));
$up_url = $up_url ."/";
}
echo " a href=/"test.php?act=list_dir&dir=$up_url/" $up_dir /a
}
else
{
echo $up_dir;
die();
}
?
/td
/tr
?php
$up_dir = $dir;
$dh = opendir($dir);
while(($file=readdir($dh)) != false)
{
if($file != "." && $file != ".." && $file != ".svn" )
{
if(strpos($file,".") !==false)
{
$time = date("Y-m-d H:i:s", filectime($dir . $file));
$size = filesize($dir . $file)/1000;
echo " tr td $file /td td $time /td td $size /td /tr
}
else
{
$time = date("Y-m-d H:i:s.", filectime($dir . $file));
$size = filesize($dir . $file)/1000;
$dir = $dir . $file ."/";

echo " tr td a href =/"test.php?act=list_dir&dir=$dir/" $file /a /td td $time /td td $size /td /tr
$dir = $up_dir;

}
}
}

?


/table

?php die(); ?
/body


/html

PHP教程

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 宜黄县| 太湖县| 漯河市| 仁布县| 攀枝花市| 嘉黎县| 林周县| 阜新| 西平县| 鄂托克旗| 宁蒗| 巧家县| 偏关县| 仁化县| 翁源县| 岳西县| 赤水市| 临夏市| 张家川| 唐山市| 博乐市| 贵阳市| 三明市| 昌吉市| 濮阳县| 邯郸县| 漾濞| 恭城| 东台市| 旬邑县| 凯里市| 湟中县| 黑山县| 常熟市| 闽清县| 柯坪县| 炎陵县| 阳曲县| 治县。| 治县。| 化州市|