SplFileInfo::getCTime

(PHP 5 >= 5.1.2, PHP 7)

SplFileInfo::getCTimeGets the inode change time

Descrierea

public SplFileInfo::getCTime ( void ) : int

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

Parametri

Această funcție nu are parametri.

Valorile întoarse

The last change time, in a Unix timestamp.

Erori/Excepții

Throws RunTimeException on error.

Exemple

Example #1 SplFileInfo::getCTime() example

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

Exemplul de mai sus va afișa ceva similar cu:

Last changed at 1:49 pm

A se vedea și