PHP   发布时间:2019-11-12  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了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)){ //如果文件符合规定,我们@R_489_10156@输出. 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)){ ?>
:10px;">
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程序设计有所帮助。

大佬总结

以上是大佬教程为你收集整理的PHP文件与目录操作示例全部内容,希望文章能够帮你解决PHP文件与目录操作示例所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:文件目录