Copy code The code is as follows:
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);
?>
The above introduces the unix timestamp PHP time conversion Unix timestamp code, including unix timestamp content. I hope it will be helpful to friends who are interested in PHP tutorials.