PHP文件与目录操作示例解析
发布:smiling 来源: PHP粉丝网 添加日期:2018-06-19 10:44:47 浏览: 评论:0
本文实例讲述了PHP文件与目录操作,分享给大家供大家参考,具体如下.
文件目录相关函数:
- <?php
- // 输出目录中的文件
- functionoutputcurfiles ($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] ."<br />";
- }
- }
- }
- }
- }
- }else{
- echo"对不起,这个目录不存在.";
- }
- }
- $allowedtypes=array("txt","html");
- outputcurfiles ($allowedtypes,"testfolder");
- ///////////////////////////////////////////////////
- functionrecurdir ($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)){
- ?><span style="font-weight: bold;"mce_style="font-weight: bold;"><?phpecho$anitem; ?></span><?php
- ?><div style="margin-left: 10px;"mce_style="margin-left:10px;"><?php
- recurdir ($thedir."/".$anitem);
- ?></div><?php
- }elseif(is_file($thedir."/".$anitem)){
- //此时输出文件.
- echo$anitem."<br />";
- }
- }
- }
- }else{
- thrownewexception ("Sorry, directory could not be openend.");
- }
- }catch(exception$e) {
- echo$e->getmessage();
- }
- }
- echo"<br />/////////////////////////////////////<br /><br />";
- recurdir("testfolder");
- //////////////////////////////////////////////////////////////////
- echo"<br />/////////////////////////////////////<br /><br />";
- functionsortfilesbydate ($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"对不起,这个目录不存在.";
- } //phpfensi.com
- }
- //然后,我们将函数指向我们需要查看的目录.
- $sortedarray= sortfilesbydate ("testfolder");
- //至此,就可以按照如下形式输出:
- while($element= each ($sortedarray)){
- echo"File: ".$element['key'] ." was last modified: ".date("F j, Y h:i:s",$element['value']) ."<br />";
- }
- ?>
Tags: 示例 文件 目录
相关文章
- ·PHP获取当前路径和目录的示例(2014-06-26)
- ·php 读取目录所有文件信息dir()(2013-11-12)
- ·php获取当前文件所有执行的函数和类(2013-11-12)
- ·php检查文件是否可读和可写(2013-11-14)
- ·PHP文件操作方法问答 (2013-11-14)
- ·PHP 文件操作概述 (2013-11-14)
- ·php文件操作和获取文件信息数据 (2013-11-14)
- ·PHP开发中文件操作疑难问答(2013-11-27)
- ·php判断文件是否存在file_exists 与 is_file详解(2013-11-29)
- ·PHP 获取文件扩展名的方法(2013-11-29)
- ·PHP中读写文件(2013-11-29)
- ·解决php中file_get_contents 读取大文件返回false问题(2013-12-08)
- ·解决file_get_contents遇到中文文件名无法打开问题(2013-12-08)
- ·PHP操作文件问答(2013-12-08)
- ·php文件操作(2013-12-11)
- ·php判断文件是否存在(2013-12-16)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)