domingo, 18 de marzo de 2018

printing date and unixtime

$date = date_create();  //create date object based on current date

echo date_format($date, 'Y-m-d H:i:s');  // format and print date

echo "<br>";
echo $date->getTimestamp();  // print the unix time of current date

No hay comentarios:

Publicar un comentario