欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP遍历指定文件夹下的所有文件

程序员文章站 2022-05-09 14:18:25
...
PHP遍历指定文件夹下的所有文件,如下代码:
  1. php
  2. session_start();
  3. if($Submit=="提交"){
  4. $shili=$file_dir;
  5. }
  6. ?>
  7. html>
  8. head>
  9. meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  10. title>遍历指定目录下的所有文件 - www.cxybl.comtitle>
  11. head>
  12. body>
  13. table width="350" height="150" border="0" cellpadding="0" cellspacing="0" background="images/324.jpg">
  14. form name="form1" method="post" action="index.php">
  15. tr>
  16. td width="132" height="55"> td>
  17. td width="135"> td>
  18. td width="83"> td>
  19. tr>
  20. tr>
  21. td height="40"> td>
  22. td align="center">
  23. input name="file_dir" type="text" id="file_dir" size="18" maxlength="50">td>
  24. td> input type="submit" name="Submit" value="提交">td>
  25. tr>
  26. tr>
  27. td height="55"> td>
  28. td> td>
  29. td> td>
  30. tr>
  31. form>
  32. table>
  33. php
  34. $shili = $file_dir ;
  35. if ( !file_exists ( $shili )){
  36. print $shili."目录不存在!" ;
  37. }else{
  38. $i = 0;
  39. if ( is_dir ( $shili )){ //检测是否是合法目录
  40. if ($shi = opendir ( $shili )){ //打开目录
  41. while ($li = readdir( $shi )){ //读取目录
  42. $i++ ;
  43. echo " $i: $li br> " ; } } } //输出目录中的内容
  44. closedir ( $shi ) ; } ?>
  45. body>
  46. html>