I have a 13-digit time stamp 1443852054000, which I want to convert to a date and time, but it fails. I tried the following codes:
echo date('Ymd h:i:s',$item->timestamp);
doesn't work for me as well this
$unix_time = date('Ymdhis', strtotime($datetime ));
and this:
$item = strtotime($txn_row['appoint_date']); <?php echo date("Ymd H:i:s", $time); ?>
what should i use?
php timestamp unix-timestamp
glendon philipp baculio
source share