SplFileInfo::getCTime
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::getCTime — inode 変更時刻を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
最終変更時刻を Unix タイムスタンプで返します。
失敗時に false
を返します。
エラー / 例外
エラー時に RunTimeException をスローします。
例
例1 SplFileInfo::getCTime() の例
<?php
$info = new SplFileInfo('example.jpg');
echo 'Last changed at ' . date('g:i a', $info->getCTime());
?>
上の例の出力は、 たとえば以下のようになります。
Last changed at 1:49 pm
参考
- filectime() - ファイルの inode 変更時刻を取得する
- SplFileInfo::getATime() - ファイルの最終アクセス時刻を取得する
- SplFileInfo::getMTime() - 最終変更時刻を取得する
+add a note
User Contributed Notes 1 note
michael at smith-li dot com ¶
10 years ago
A file's ctime is it's inode change time. The inode changes when file metadata changes (for example when file permissions change). The inode also changes whenever the file's contents change, but since the inode changes for other reasons, it's more accurate to use mtime to get the age of the contents of a file. See SPLFileInfo::getMTime
Also, please note ctime is not creation time. (Most UNIX-like filesystems do not record a file's creation time.)
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google