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

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

WBOY
發布: 2016-07-25 08:43:48
原創
892 人瀏覽過

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


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板