时间戳与字符串时间转换

Posted supramolecular

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间戳与字符串时间转换相关的知识,希望对你有一定的参考价值。

 python

import datetime
import time
a = '2020-04-08 15:28:59'
stamp = int(time.time())
print(datetime.datetime.fromtimestamp(stamp))
print(time.strftime("%Y-%m-%d %H:%M", time.localtime(stamp)))
print(time.mktime(time.strptime(a,'%Y-%m-%d %H:%M:%S')))

php

date_default_timezone_set('Asia/Shanghai');
$stringtime = date("Y-m-d H:i:s",time());
echo $stringtime."<br/>";
echo strtotime($stringtime)."<br/>";
echo date("Y/m/d G:i:s A",strtotime($stringtime));

 

以上是关于时间戳与字符串时间转换的主要内容,如果未能解决你的问题,请参考以下文章

JS时间戳与时间字符串之间的相互转换

转换时间戳与时间截取

时间戳与日期相互转换

javascript时间戳与日期格式的相互转换

mysql 时间戳与日期格式的相互转换

PHP时间戳与日期的相互转换