php中两种方法获取时间戳有差异,为什么?
给我你的怀抱
给我你的怀抱 2017-05-16 13:14:11
0
5
592

尝试用php的两种方式获取当前的时间戳,存在差异,但是两个时间戳转换成时间确是想同的时间点,查了一下网络上的时间戳的单位是秒。为什么会这样?


$currentDay = getdate();
//var_dump($currentDay);
//2.1 获取当前的日期
//echo $currentDay["year"]."-".$currentDay["mon"]."-".$currentDay["mday"]."<br/>";
echo "时间戳为1:".strtotime(date("Y-m-d h:m:s"))."<br/>";
echo "时间戳为2:".$currentDay[0]."<br/>";
$time1 = strtotime(date("Y-m-d h:m:s"));
echo "不同的时间为:".date("Y-m-d H:m:s a",$currentDay[0])."--".date("Y-m-d H:m:s a",$time1);

输出结果为:
时间戳为1:1492131843
时间戳为2:1492134903
不同的时间为:2017-04-14 09:04:03 am--2017-04-14 09:04:03 am

给我你的怀抱
给我你的怀抱

全部回复(5)
伊谢尔伦
strtotime(date("Y-m-d h:m:s"))

应该是:

strtotime(date("Y-m-d h:i:s"))
刘奇

建议楼主多读读php手册。链接

漂亮男人

https://www.bytelang.com/o/s/...

是你自己写错了!

巴扎黑

你自己写错了

左手右手慢动作

年月日 时分秒对应的是 Y-m-d h:i:s

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板