Php 08-03-2013

Php.png

Da timestamp a date

Convertire un dato da timestamp a date


1
2
3
4
5
6
<?php
$timestamp=1154694319;
$data = date("d-m-Y H:i", $timestamp);
 
echo $data;
?>


Ti potrebbe interessare anche MySql | Timestamp | date | conversione