php opendir function and opendir syntax

高洛峰
Release: 2016-11-29 14:55:26
Original
1128 people have browsed it

opendir syntax: opendir(path,context)

Directory, function description: open a directory handle, the opendir() function opens a directory handle, then the function returns a directory stream, otherwise it returns false. Let’s look at an opendir listing directory. All file instances, the code is as follows:

$dirs ='./';//Specify the current fool

if( is_dir( $dirs ) )

{

$hanld = opendir($dirs);

while (($file = readdir($hanld)) !== false)

{

echo "File name: " . $file . "
";

}

closedir($hanld ;

File name: www .phpfensi.com

*/

Tips and Notes

Note: Starting from PHP 5.0.0, the path parameter supports ftp:// URL wrapper

Note: In PHP 4.3.0, the path parameter can be any supported The URL of the directory listing, but in PHP 4 only the file:// URL wrapper supports this function.

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!