首頁  >  文章  >  後端開發  >  php獲得文件大小和文件創建時間

php獲得文件大小和文件創建時間

WBOY
WBOY原創
2016-07-25 08:43:48875瀏覽

php中可以显示文件的各种属性,这些属性包括文件的最后访问时间、最后修改时间、文件大小等。

  1. Returning information about a file
  2. print "The size of the file is ";
  3. print filesize( "samplefile.doc" );
  4. print "
    ";
  5. $atime = fileatime( "samplefile.doc" );
  6. print "This file accessed on ";
  7. print date("l, M d, Y g:i a", $atime);
  8. print "
    ";
  9. $mtime = filemtime( "samplefile.doc" );
  10. print "This file was modified on ";
  11. print date("l, M d, Y g:i a", $mtime);
  12. print "
    ";
  13. $ctime = filectime( "samplefile.doc" );
  14. print "This file was changed on ";
  15. print date("l, M d, Y g:i a", $ctime);
  16. ?>
复制代码

php


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn