php獲得檔案大小和檔案建立時間的方法執行個體詳解

來源:互聯網
上載者:User
本文執行個體講述了php獲得檔案大小和檔案建立時間的方法。分享給大家供大家參考。具體分析如下:

php中可以顯示檔案的各種屬性,這些屬性包括檔案的最後訪問時間、最後修改時間、檔案大小等。

<HTML><HEAD><TITLE>Returning information about a file</TITLE></HEAD><BODY><?phpprint "The size of the file is ";print filesize( "samplefile.doc" );print "<br>";$atime = fileatime( "samplefile.doc" );print "This file accessed on ";print date("l, M d, Y g:i a", $atime);print "<br>";$mtime = filemtime( "samplefile.doc" );print "This file was modified on ";print date("l, M d, Y g:i a", $mtime);print "<br>";$ctime = filectime( "samplefile.doc" );print "This file was changed on ";print date("l, M d, Y g:i a", $ctime);?></BODY></HTML>

filemtime ( string filename )

返迴文件上次被修改的時間,出錯時返回 FALSE。時間以 Unix 時間戳記的方式返回,可用於 date()。

filectime ( string filename )

返迴文件上次 inode 被修改的時間,如果出錯則返回 FALSE。時間以 Unix 時間戳記的方式返回。

fileatime ( string filename )

返迴文件上次被訪問的時間,如果出錯則返回 FALSE。時間以 Unix 時間戳記的方式返回。

////////////////////////////

filectime:linux最後一次修改時間
filemtime:最後一次修改時間
fileatime:最後一次訪問的時間

/////////////////////////////////////////////////////////////////////////////

filemtime

filemtime -- 取得檔案修改時間
說明

int filemtime ( string filename)

返迴文件上次被修改的時間,出錯時返回 FALSE。時間以 Unix 時間戳記的方式返回,可用於 date()。
注: 本函數的結果會被緩衝。詳細資料參見 clearstatcache()。
注: 本函數不能作用於遠程檔案,被檢查的檔案必須通過伺服器的檔案系統訪問。
本函數返迴文件中的資料區塊上次被寫入的時間,也就是說,檔案的內容上次被修改的時間。

例子 1. filemtime() 例子

<?php// outputs e.g. somefile.txt was last modified: December 29 2002 22:16:23.$filename = 'somefile.txt';if (file_exists($filename)) {  echo "$filename was last modified: " . date ("F d Y H:i:s.", filemtime($filename));}?>

filectime

filectime -- 取得檔案的 inode 修改時間
說明

int filectime ( string filename)

返迴文件上次 inode 被修改的時間,如果出錯則返回 FALSE。時間以 Unix 時間戳記的方式返回。
注意:在大多數 Unix 檔案系統中,當一個檔案的 inode 資料被改變時則該檔案被認為是修改了。也就是說,當檔案的許可權,所有者,所有組或其它 inode 中的中繼資料被更新時。參見 filemtime()(這才是你想用於在 web 頁面中建立“最後更新時間”腳註的函數)和 fileatime()。
注意某些 Unix 說明文本中把 ctime 說成是該檔案建立的時間,這是錯的。在大多數 Unix 檔案系統中沒有 Unix 檔案的建立時間。
注: 本函數的結果會被緩衝。詳細資料參見 clearstatcache()。
注: 本函數不能作用於遠程檔案,被檢查的檔案必須通過伺服器的檔案系統訪問。

例子 1. fileatime() 例子

<?php// 輸出類似:somefile.txt was last changed: December 29 2002 22:16:23.$filename = 'somefile.txt';if (file_exists($filename)) {  echo "$filename was last changed: " . date ("F d Y H:i:s.", filectime($filename));}?>

fileatime

fileatime -- 取得檔案的上次訪問時間
說明

int fileatime ( string filename)

返迴文件上次被訪問的時間,如果出錯則返回 FALSE。時間以 Unix 時間戳記的方式返回。
注意:一個檔案的 atime 應該在不論何時讀取了此檔案中的資料區塊時被更改。當一個應用程式定期訪問大量檔案或目錄時很影響效能。有些 Unix 檔案系統可以在載入時關閉 atime 的更新以提高這類程式的效能。USENET 新聞群組假離線是一個常見的例子。在這種檔案系統下本函數沒有用處。
注: 本函數的結果會被緩衝。詳細資料參見 clearstatcache()。
注: 本函數不能作用於遠程檔案,被檢查的檔案必須通過伺服器的檔案系統訪問。
例子 1. fileatime() 例子

<?php// 輸出類似:somefile.txt was last accessed: December 29 2002 22:16:23.$filename = 'somefile.txt';if (file_exists($filename)) {  echo "$filename was last accessed: " . date ("F d Y H:i:s.", fileatime($filename));}?>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.