PHP 是一種開源的伺服器端程式語言,常用於 Web 開發。在 PHP 中,我們可以使用內建函數實作來改變檔案時間。
在 Linux/Unix 系統下,每個檔案都有三種時間屬性,分別是存取時間、修改時間和狀態改變時間。 PHP 中,可以使用 utime() 和 touch() 函數來變更檔案的存取時間並修改時間。
utime() 函數用於更改檔案的存取時間和修改時間。它的語法如下:
bool utime ( string $filename , int $time )
其中,$filename 參數是要更改時間的檔名,$time 參數就是時間戳記。如果需要將檔案的存取時間和修改時間都設定為目前時間,可以這樣寫:
utime($filename, time());
例如,下面的範例程式碼將更改test.txt 檔案的存取和修改時間:
$filename = 'test.txt'; if(file_exists($filename)) { utime($filename, time()); echo 'File time changed.'; } else { echo 'File not exists.'; }
touch() 函數也可以更改檔案的存取時間和修改時間,同時也可以用於建立檔案。它的語法如下:
bool touch ( string $filename [, int $time = time() [, int $atime ]] )
其中,$filename 參數是要更改時間或建立的檔案名,$time 參數為可選的,用於設定修改時間,$atime 參數為可選的,使用於設定存取時間。如果不指定 $time 和 $atime 參數,touch() 函數將為檔案設定目前時間。
例如,下面的範例程式碼將更改test.txt 檔案的存取和修改時間,並建立一個新的檔案new.txt 並將存取和修改時間設為目前時間:
// 更改文件时间 $filename = 'test.txt'; if(file_exists($filename)) { touch($filename); echo 'File time changed.'; } else { echo 'File not exists.'; } // 创建新文件并设置时间 $new_file = 'new.txt'; if(touch($new_file)) { echo 'New file created and time set.'; } else { echo 'Failed to create new file.'; }
在上述範例中,我們可以看到PHP 提供了兩個函數用於更改檔案時間,它們分別是utime() 和touch() 函數,開發者可以根據自己的需求選擇使用哪個函數。
以上是詳解怎麼用php更改檔案的時間屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!