


php displays all subfolders of the specified directory_PHP tutorial
php tutorial display all subfolders of the specified directory
function ListFolders()
{
//Set a path
$dir = "./";
//Set an array to store files
$aDir = array() ;
$oCurrentdir = opendir( $dir ); //Open directory
while ( $sFile = readdir( $oCurrentdir ) ) //Read all subdirectories of the current directory
{
if ( $sFile != '.' && $sFile != '..' && is_dir( $dir . $sFile ) )//Determine whether it is the root directory
$aFolders[] = 'Directory:' .$sFile. '
' ;//Input directory
}
closedir( $oCurrentdir ) ;//Judge the directory just opened with opendir
// Open the "Folders" node.
natcasesort($aFolders); //Naturally sort the array. The case-insensitive natural order algorithm sorts the elements in the given array, that is, the sorting method of numbers from 1 to 9, the sorting method of letters from a to z, whichever is shorter Priority
foreach ( $aFolders as $sFolder )
{
echo $sFolder ;
}
}
/*
Test, we have two subdirectories in the current directory
Directory:1
Directory: www.bKjia.c0m
*/
getFolders();
/*
After running, the result is
Directory:1
Directory: www.bKjia.c0m
Common function analysis:
array() data declaration, you can use direct assignment array(1,2,3,4);
opendir() opens a directory. The opendir() function opens a directory handle and can be used by closedir(), readdir() and rewinddir(). If successful, the function returns a directory stream, otherwise it returns false and an error. You can hide error output by prepending "@" to the function name.
readdir reads directory
cosedir judgment directory
The natcasesort() function sorts the elements in the given array using a case-insensitive natural ordering algorithm. The natcasesort() function implements "natural sorting", that is, the sorting method of numbers from 1 to 9, and the sorting method of letters from a to z. The shorter one is given priority. This function is not case-sensitive. The index of the array remains associated with the cell value. The function returns TRUE if successful, FALSE otherwise.
The compilation and original reprinting of this website indicate that it comes from www.bKjia.c0m

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
