SplFileInfo::getCTime
(PHP 5 >= 5.1.2)
SplFileInfo::getCTime — Gets 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.
Примери
Example #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
There are no user contributed notes for this page.
