Home  >  Article  >  Backend Development  >  Detailed explanation of the use of php dir() function

Detailed explanation of the use of php dir() function

藏色散人
藏色散人Original
2019-04-23 16:34:214096browse

Detailed explanation of the use of php dir() function

The dir() function in PHP is a built-in function that returns an instance of the directory class. The function of the dir() function is to read a directory, which includes the following content:

● Open the given directory.

● You can use the two attributes handle and path of dir().

● Both handle and path attributes have three methods: read(), rewind() and close().

The path to the directory is sent to the opendir() function as a parameter. If successful, it will return an instance of the directory class; if it fails, it will return FALSE.

Syntax:

dir($directory, $context)

Parameters:

The dir() function in PHP accepts two parameters, as described below .

$directory: It is a mandatory parameter that specifies the directory path.

$context: It is an optional parameter that specifies the behavior of the stream.

Return value:

Returns an instance of the directory class on success, and returns FALSE on failure.

Errors and exceptions:

If the passed dir() parameter is wrong, a NULL value is returned.

The order in which the read method returns directory entries depends on the system.

dir() function code example:

dir() function code example 1:

read()) !== false)  
{  
    echo("文件名称 : " . $file_name); 
    echo "
" ; } ?>

Output:

文件名称: gfg.jpg
文件名称: ..
文件名称: gfg.pdf
文件名称: .
文件名称: gfg.txt

dir() function code example 2:

path . "
"); echo("目录处理程序ID: " . $dir_handle->handle . "
"); while(($file_name = $dir_handle->read()) !== false) { echo("File Name: " . $file_name); echo "
" ; } $dir_handle->close(); ?>

Output:

目录路径: user/gfg
目录处理程序ID: Resource id #2

文件名称: gfg.jpg
文件名称: ..
文件名称: gfg.pdf
文件名称: .
文件名称: gfg.txt

Related recommendations: "PHP Tutorial

The above is the detailed content of Detailed explanation of the use of php dir() function. For more information, please follow other related articles on the PHP Chinese website!

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