The FilesystemIterator class
(PHP 5 >= 5.3.0)
Einführung
The Filesystem iterator
Klassenbeschreibung
/* Konstanten */
/* Methoden */
public __construct
( string
$path
[, int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO | FilesystemIterator::SKIP_DOTS
] )/* Geerbte Methoden */
}Vordefinierte Konstanten
FilesystemIterator::CURRENT_AS_PATHNAME-
Makes FilesystemIterator::current() return the pathname.
FilesystemIterator::CURRENT_AS_FILEINFO-
Makes FilesystemIterator::current() return an SplFileInfo instance.
FilesystemIterator::CURRENT_AS_SELF-
Makes FilesystemIterator::current() return $this (the FilesystemIterator).
FilesystemIterator::CURRENT_MODE_MASKFilesystemIterator::KEY_AS_PATHNAME-
Makes FilesystemIterator::key() return the pathname.
FilesystemIterator::KEY_AS_FILENAME-
Makes FilesystemIterator::key() return the filename.
FilesystemIterator::FOLLOW_SYMLINKS-
Makes RecursiveDirectoryIterator::hasChildren() follow symlinks.
FilesystemIterator::KEY_MODE_MASKFilesystemIterator::NEW_CURRENT_AND_KEY-
Same as FilesystemIterator::KEY_AS_FILENAME | FilesystemIterator::CURRENT_AS_FILEINFO.
FilesystemIterator::SKIP_DOTS-
Skips dot files (. and ..).
FilesystemIterator::UNIX_PATHS-
Makes paths use Unix-style forward slash irrespective of system default.
Changelog
| Version | Beschreibung |
|---|---|
| 5.3.1 | Added FilesystemIterator::FOLLOW_SYMLINKS |
Inhaltsverzeichnis
- FilesystemIterator::__construct — Constructs a new filesystem iterator
- FilesystemIterator::current — The current file
- FilesystemIterator::getFlags — Get the handling flags
- FilesystemIterator::key — Retrieve the key for the current file
- FilesystemIterator::next — Move to the next file
- FilesystemIterator::rewind — Rewinds back to the beginning
- FilesystemIterator::setFlags — Sets handling flags