Date/Time Funzioni
PHP Manual

getdate

(PHP 4, PHP 5)

getdateRiceve informazioni su data/orario

Descrizione

array getdate ([ int $timestamp ] )

Restituisce un array associativo contenente le informazioni sulla data del timestamp, o dell'attuale orario locale se non รจ stato assegnato timestamp, con i seguenti elementi di array:

Example #1 Esempio di getdate()

$today = getdate(); 
$month = $today['month']; 
$mday = $today['mday']; 
$year = $today['year']; 
echo "$month $mday, $year";


Date/Time Funzioni
PHP Manual