Home >Backend Development >PHP Tutorial >How to display subdirectories under a specified directory in php, specify the directory in php_PHP tutorial

How to display subdirectories under a specified directory in php, specify the directory in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:02:04847browse

How to display subdirectories under a specified directory in php, specify a directory in php

The example in this article describes how to display subdirectories under a specified directory in php. Share it with everyone for your reference. The specific implementation method is as follows:

<&#63;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 href='index.php&#63;subdirs=$item'>$item</a></li>";
  }
}
&#63;>

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/970985.htmlTechArticleHow to display subdirectories under a specified directory in php, specify a directory in php. This example describes how to display subdirectories under a specified directory in php. . Share it with everyone for your reference. The specific implementation method is as follows...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn