SplFileInfo
PHP Manual

SplFileInfo::getCTime

(PHP 5 >= 5.1.2)

SplFileInfo::getCTimeGets the inode change time

説明

public int SplFileInfo::getCTime ( void )

Returns the inode change time for the file. The time returned is a Unix timestamp.

パラメータ

この関数にはパラメータはありません。

返り値

The last change time, in a Unix timestamp.

エラー / 例外

Throws RunTimeException on error.

例1 SplFileInfo::getCTime() example

<?php
$info 
= new SplFileInfo(__FILE__);
echo 
'Last changed at ' date('g:i a'$info->getCTime());
?>

上の例の出力は、たとえば 以下のようになります。

Last changed at 1:49 pm

参考


SplFileInfo
PHP Manual