"/> ">

Home >Backend Development >PHP Tutorial >unix timestamp PHP time conversion Unix timestamp code

unix timestamp PHP time conversion Unix timestamp code

WBOY
WBOYOriginal
2016-07-29 08:41:401003browse

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.

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