getdate

(PHP 3, PHP 4 , PHP 5)

getdate -- Riceve 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:

Esempio 1. Esempio di getdate()

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

Hosting by: hurra.com
Generated: 2007-01-26 17:56:25