Home > Backend Development > PHP Tutorial > PHP time conversion Unix timestamp code_PHP tutorial

PHP time conversion Unix timestamp code_PHP tutorial

WBOY
Release: 2016-07-21 15:41:29
Original
934 people have browsed it

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 );
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321194.htmlTechArticleCopy the code as follows: ?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 labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template