PHP time conversion Unix timestamp code

  • 2020-03-31 20:15:58
  • OfStack


<?php 
date_default_timezone_set('Asia/Chongqing'); 
$time1 = "2006-04-16 08:40:54"; 
$time2 = strtotime($time1); 
echo $time2; 
echo date('Y-m-d h:i:s',$time2); 
?>

Related articles: