[ Pobierz całość w formacie PDF ]
.readdirPodręcznik PHPPoprzedniNastępnyreaddir (PHP 3, PHP 4 >= 4.0)readdir -- read entry from directory handleDescriptionstring readdir (resource dir_handle)
Returns the filename of the next file from the directory.Thefilenames are not returned in any particular order.Przykład 1.List all files in the current directory// Note that !== did not exist until 4.0-RC2<?php$handle=opendir('.');echo "Directory handle: $handle\n";echo "Files:\n";while (false !== ($file = readdir($handle))) {echo "$file\n";}closedir($handle);?>
Note that readdir() will return the.and.entries.If you don't want these, simply stripthem out:Przykład 2.List all files in the current directory and strip out.and.<?php$handle = opendir('.');while (false !== ($file = readdir($handle))) {if ($file != "." && $file != ".") {echo "$file\n";}}closedir($handle);?>PoprzedniSpis treściNastępnyopendirPoczątek rozdziałurewinddir
[ Pobierz całość w formacie PDF ]