PHP文件与目录操作示例

本文实例讲述了PHP文件与目录操作。分享给大家供大家参考,具体如下:

文件目录相关函数

PHP;"> PHP // 输出目录中的文件 function outputcurfiles ($allowedtypes,$thedir){ //首先,我们确保目录存在。 if (is_dir ($thedir)){ //现在,我们使用scandir扫描目录中的文件。 $scanarray = scandir ($thedir); //接着我们开始解析数组。 //scandir()用“.”和“..”统计文件导航列表 //因此作为文件,我们不应该列出他们。 for ($i = 0; $i < count ($scanarray); $i++){ if ($scanarray[$i] != "." && $scanarray[$i] != ".."){ //现在,进行检查,以确保这是一个文件,而不是一个目录。 if (is_file ($thedir . "/" . $scanarray[$i])){ //现在,因为我们将允许客户端编辑这个文件,//我们必须检查它是否是可读和可写。 if (is_writable ($thedir. "/" . $scanarray[$i]) && is_readable($thedir . "/" . $scanarray[$i])){ //现在,我们检查文件类型是否存在于允许的类型数组中. $thepath = pathinfo ($thedir . "/" . $scanarray[$i]); if (in_array ($thepath['extension'],$allowedtypes)){ //如果文件符合规定,我们可以继续输出. echo $scanarray[$i] . "
"; } } } } } } else { echo "对不起,这个目录不存在."; } } $allowedtypes = array ("txt","html"); outputcurfiles ($allowedtypes,"testfolder"); /////////////////////////////////////////////////// function recurdir ($thedir) { //First attempt to open the directory. try { if ($adir = opendir ($thedir)){ //扫描目录。 while (false !== ($anitem = readdir ($adir))){ //不统计目录中包含“.”或“..”的情况 if ($anitem != "." && $anitem != ".."){ //此时如果是一个目录,则缩进一点 //再去递归 if (is_dir ($thedir . "/" . $anitem)){ ?>
PHP } elseif (is_file ($thedir . "/" . $anitem)){ //此时输出文件. echo $anitem . "
"; } } } } else { throw new exception ("Sorry,directory could not be openend."); } } catch (exception $e) { echo $e->getmessage(); } } echo "
/////////////////////////////////////

"; recurdir("testfolder"); ////////////////////////////////////////////////////////////////// echo "
/////////////////////////////////////

"; function sortfilesbydate ($thedir){ //首先,需要确保目录存在。 if (is_dir ($thedir)){ //接着,我们使用scandir扫描此目录中的文件. $scanarray = scandir ($thedir); $finalarray = array(); //然后开始解析数组 //scandir()用“.”和“..”统计文件导航列表 //因此作为文件,我们不应该列出他们. for ($i = 0; $i < count ($scanarray); $i++){ if ($scanarray[$i] != "." && $scanarray[$i] != ".."){ //现在,我们检查,以确保这是一个文件,而不是一个目录. if (is_file ($thedir . "/" . $scanarray[$i])){ //现在需要做的是循环数据到一个关联数组. $finalarray[$thedir . "/" . $scanarray[$i]] = filemtime ($thedir . "/" . $scanarray[$i]); } } } //至此,我们已经遍历了整个数组,现在需要做的只是asort()它。 asort ($finalarray); return ($finalarray); } else { echo "对不起,这个目录不存在."; } } //然后,我们将函数指向我们需要查看的目录. $sortedarray = sortfilesbydate ("testfolder"); //至此,就可以按照如下形式输出: while ($element = each ($sortedarray)){ echo "File: " . $element['key'] . " was last modified: " . date ("F j,Y h:i:s",$element['value']) . "
"; } ?>

更多关于PHP相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》、《》及《

希望本文所述对大家PHP程序设计有所帮助。

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...