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

PHP time conversion Unix timestamp code_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-21 15:41:29964browse

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...
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