(PHP 5 >= 5.3.0, PHP 7)
Sets handling flags
public void FilesystemIterator::setFlags ([ int $flags ] )
Sets handling flags.
Parameters:
flags
The handling flags to set. See the FilesystemIterator constants.
Returns:
No value is returned.
Examples:
FilesystemIterator::key() example
This example demonstrates the difference between the FilesystemIterator::KEY_AS_PATHNAME and FilesystemIterator::KEY_AS_FILENAME flags.
1 2 3 4 5 6 7 8 9 10 11 12 13 | <?php $iterator = new FilesystemIterator(dirname( __FILE__ ), FilesystemIterator::KEY_AS_PATHNAME); echo "Key as Pathname:\n" ; foreach ( $iterator as $key => $fileinfo ) { echo $key . "\n" ; } $iterator ->setFlags(FilesystemIterator::KEY_AS_FILENAME); echo "\nKey as Filename:\n" ; foreach ( $iterator as $key => $fileinfo ) { echo $key . "\n" ; } ?> |
The above example will output something similar to:
Key as Pathname: /www/examples/apple.jpg /www/examples/banana.jpg /www/examples/example.php Key as Filename: apple.jpg banana.jpg example.php
See also:
Please login to continue.