Home  >  Article  >  Backend Development  >  PHP 时间转换Unix时间戳代码_PHP

PHP 时间转换Unix时间戳代码_PHP

WBOY
WBOYOriginal
2016-06-01 12:20:04812browse

unix时间戳

复制代码 代码如下:
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);
?>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn