PHP文件与目录操作示例解析

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

文件目录相关函数:

  1. <?php
  2. // 输出目录中的文件
  3. functionoutputcurfiles ($allowedtypes,$thedir){
  4. //首先,我们确保目录存在。
  5. if(is_dir($thedir)){
  6. //现在,我们使用scandir扫描目录中的文件。
  7. $scanarray= scandir ($thedir);
  8. //接着我们开始解析数组。
  9. //scandir()用“.”和“..”统计文件导航列表
  10. //因此作为文件,我们不应该列出他们。
  11. for($i= 0;$i<count($scanarray);$i++){
  12. if($scanarray[$i] !="."&&$scanarray[$i] !=".."){
  13. //现在,进行检查,以确保这是一个文件,而不是一个目录。
  14. if(is_file($thedir."/".$scanarray[$i])){
  15. //现在,因为我们将允许客户端编辑这个文件,
  16. //我们必须检查它是否是可读和可写。
  17. if(is_writable($thedir."/".$scanarray[$i]) && is_readable($thedir."/".$scanarray[$i])){
  18. //现在,我们检查文件类型是否存在于允许的类型数组中.
  19. $thepath=pathinfo($thedir."/".$scanarray[$i]);
  20. if(in_array ($thepath['extension'],$allowedtypes)){
  21. //如果文件符合规定,我们可以继续输出.
  22. echo$scanarray[$i] ."<br />";
  23. }
  24. }
  25. }
  26. }
  27. }
  28. }else{
  29. echo"对不起,这个目录不存在.";
  30. }
  31. }
  32. $allowedtypes=array("txt","html");
  33. outputcurfiles ($allowedtypes,"testfolder");
  34. ///////////////////////////////////////////////////
  35. functionrecurdir ($thedir) {
  36. //First attempt to open the directory.
  37. try{
  38. if($adir= opendir ($thedir)){
  39. //扫描目录。
  40. while(false !== ($anitem= readdir ($adir))){
  41. //不统计目录中包含“.”或“..”的情况
  42. if($anitem!="."&&$anitem!=".."){
  43. //此时如果是一个目录,则缩进一点
  44. //再去递归
  45. if(is_dir($thedir."/".$anitem)){
  46. ?><span mce_><?phpecho$anitem; ?></span><?php
  47. ?><div mce_><?php
  48. recurdir ($thedir."/".$anitem);
  49. ?></div><?php
  50. }elseif(is_file($thedir."/".$anitem)){
  51. //此时输出文件.
  52. echo$anitem."<br />";
  53. }
  54. }
  55. }
  56. }else{
  57. thrownewexception ("Sorry, directory could not be openend.");
  58. }
  59. }catch(exception$e) {
  60. echo$e->getmessage();
  61. }
  62. }
  63. echo"<br />/////////////////////////////////////<br /><br />";
  64. recurdir("testfolder");
  65. //////////////////////////////////////////////////////////////////
  66. echo"<br />/////////////////////////////////////<br /><br />";
  67. functionsortfilesbydate ($thedir){
  68. //首先,需要确保目录存在。
  69. if(is_dir($thedir)){
  70. //接着,我们使用scandir扫描此目录中的文件.
  71. $scanarray= scandir ($thedir);
  72. $finalarray=array();
  73. //然后开始解析数组
  74. //scandir()用“.”和“..”统计文件导航列表
  75. //因此作为文件,我们不应该列出他们.
  76. for($i= 0;$i<count($scanarray);$i++){
  77. if($scanarray[$i] !="."&&$scanarray[$i] !=".."){
  78. //现在,我们检查,以确保这是一个文件,而不是一个目录.
  79. if(is_file($thedir."/".$scanarray[$i])){
  80. //现在需要做的是循环数据到一个关联数组.
  81. $finalarray[$thedir."/".$scanarray[$i]] =filemtime($thedir."/".$scanarray[$i]);
  82. }
  83. }
  84. }
  85. //至此,我们已经遍历了整个数组,现在需要做的只是asort()它。
  86. asort ($finalarray);
  87. return($finalarray);
  88. }else{
  89. echo"对不起,这个目录不存在.";
  90. } //phpfensi.com
  91. }
  92. //然后,我们将函数指向我们需要查看的目录.
  93. $sortedarray= sortfilesbydate ("testfolder");
  94. //至此,就可以按照如下形式输出:
  95. while($element= each ($sortedarray)){
  96. echo"File: ".$element['key'] ." was last modified: ".date("F j, Y h:i:s",$element['value']) ."<br />";
  97. }
  98. ?>