Home >php教程 >php手册 >PHP 时间转换Unix时间戳代码

PHP 时间转换Unix时间戳代码

WBOY
WBOYOriginal
2016-06-13 12:19:09983browse

复制代码 代码如下:


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