SplFileInfo::getMTime
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::getMTime — 最終変更時刻を取得する
パラメータ
この関数にはパラメータはありません。
戻り値
ファイルの最終変更時刻を Unix タイムスタンプで返します。
失敗時に false
を返します。
例
例1 SplFileInfo::getMTime() の例
<?php
$info = new SplFileInfo('example.jpg');
echo 'Last modified at ' . date('g:i a', $info->getMTime());
?>
上の例の出力は、 たとえば以下のようになります。
Last modified at 1:49 pm
参考
- filemtime() - ファイルの更新時刻を取得する
- SplFileInfo::getATime() - ファイルの最終アクセス時刻を取得する
- SplFileInfo::getCTime() - inode 変更時刻を取得する
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google