SplFileInfo
PHP Manual

SplFileInfo::getCTime

(PHP 5 >= 5.1.2)

SplFileInfo::getCTimeGets the inode change time

Descrizione

public int SplFileInfo::getCTime ( void )

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

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The last change time, in a Unix timestamp.

Errori/Eccezioni

Throws RunTimeException on error.

Esempi

Example #1 SplFileInfo::getCTime() example

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

Il precedente esempio visualizzerĂ  qualcosa simile a:

Last changed at 1:49 pm

Vedere anche:


SplFileInfo
PHP Manual