|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-01-08 15:48 UTC] cynic@php.net
[2002-01-12 23:16 UTC] ken dot gregg at rwre dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 01:00:01 2025 UTC |
<? $handle=opendir('.'); while (($file = readdir($handle))!==false) { $filedate = date("d-m-Y H:i:s",filemtime($file)); echo $filedate."<br>"; } closedir($handle); ?> filemtime returns 0 for all files on a directory except for . and ..