时间:2021-07-01 10:21:17 帮助过:5人阅读
php中可以显示文件的各种属性,这些属性包括文件的最后访问时间、最后修改时间、文件大小等。
Returning information about a file <?php print "The size of the file is "; print filesize( "samplefile.doc" ); print "
"; $atime = fileatime( "samplefile.doc" ); print "This file accessed on "; print date("l, M d, Y g:i a", $atime); print "
"; $mtime = filemtime( "samplefile.doc" ); print "This file was modified on "; print date("l, M d, Y g:i a", $mtime); print "
"; $ctime = filectime( "samplefile.doc" ); print "This file was changed on "; print date("l, M d, Y g:i a", $ctime); ?>
希望本文所述对大家的php程序设计有所帮助。