php显示指定目录下子目录的方法

念桥上风景,为你痴守一世繁华。旅行的意义不在于浏览风景,而是到一个完全陌生的环境,放空自己,感受享受孤独!

本文实例讲述了php显示指定目录下子目录的方法。分享给大家供大家参考。具体实现方法如下:

<?php
echo "<h2>subdirs in dir</h2><ul>";
$basedir = basename( __FILE__ );
$dirtoscan = ($basedir . '/somedir/');
$albumlisting = scandir($dirtoscan);
foreach ($albumlisting as $item) {
  $dirinfo = pathinfo($item);
  print_r($dirinfo);
  if (is_dir("$item")) {
   echo "<li><a rel="nofollow noopener noreferrer" href='index.php?subdirs=$item'>$item</a></li>";
  }
}
?>

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

本文php显示指定目录下子目录的方法到此结束。拿出胆量来那一吼声是一切成功之母。小编再次感谢大家对我们的支持!

标签: 目录下 php