PHP Doku:: Get last access time of the current DirectoryIterator item - directoryiterator.getatime.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)IteratorenThe DirectoryIterator classDirectoryIterator::getATime

Ein Service von Reinhard Neidl - Webprogrammierung.

The DirectoryIterator class

<<DirectoryIterator::current

DirectoryIterator::getBasename>>

DirectoryIterator::getATime

(PHP 5)

DirectoryIterator::getATimeGet last access time of the current DirectoryIterator item

Beschreibung

public int DirectoryIterator::getATime ( void )

Get the last access time of the current DirectoryIterator item.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns the time the file was last accessed, as a Unix timestamp.

Beispiele

Beispiel #1 A DirectoryIterator::getATime() example

Displays a list of the files in the directory of the script and their last access times.

<?php
$iterator 
= new DirectoryIterator(dirname(__FILE__));
foreach (
$iterator as $fileinfo) {
    if (
$fileinfo->isFile()) {
        echo 
$fileinfo->getFilename() . " " $fileinfo->getATime() . "\n";
    }
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

apple.jpg 1240047118
banana.jpg 1240065176
index.php 1240047208
pear.jpg 12240047979

Siehe auch


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
petweb at quaint dot info
16.08.2008 3:21
Note that, as with filetime, the returned value is a Unix timestamp. So it can be used with the date() function;

date ("F d Y H:i:s.", filemtime($file->getATime()));



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)