[PHP] date_timestamp_get()

date_timestamp_get() (funzione PHP) restituisce un timestamp.

tips&tricks

Sintassi

date_timestamp_get($data)
parametro descrizione
$data La data da processare (creata con date_create())

Esempi

$data = date_create();
echo date_timestamp_get($data);

/* RISULTATO
1523523044
*/

Contenuti correlati

Fonti esterne

funzioni php, php

Related Articles

0 Comment