PHP Dokumentation: Directoryiterator getperms
12. Januar 2010 von werner
DirectoryIterator::getPerms
(PHP 5 >= 5.0.2)
DirectoryIterator::getPerms — Get the permissions of current DirectoryIterator item
Beschreibung
public int DirectoryIterator::getPerms ( void )
Get the permissions of the current DirectoryIterator item.
Parameter-Liste
Diese Funktion hat keine Parameter.
Rückgabewerte
Returns the permissions of the file, as a decimal integer.
Beispiele
Beispiel #1 DirectoryIterator::getPerms() example
<?php
$iterator = new DirectoryIterator(dirname(__FILE__));
foreach ($iterator as $fileinfo) {
if (!$fileinfo->isDot()) {
$octal_perms = substr(sprintf('%o', $fileinfo->getPerms()), -4);
echo $fileinfo->getFilename() . " " . $octal_perms . "\n";
}
}
?>Das oben gezeigte Beispiel erzeugteine ähnliche Ausgabe wie:
apple.jpg 0644banana.jpg 0644index.php 0744pear.jpg 0644
Siehe auch
- DirectoryIterator::isExecutable – Determine if current DirectoryIterator item is executable
- DirectoryIterator::isReadable – Determine if current DirectoryIterator item can be read
- DirectoryIterator::isWritable – Determine if current DirectoryIterator item can be written to