搜索

首页  >  问答  >  正文

php中两种方法获取时间戳有差异,为什么?

尝试用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

给我你的怀抱给我你的怀抱2795 天前636

全部回复(5)我来回复

  • 伊谢尔伦

    伊谢尔伦2017-05-16 13:16:11

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

    应该是:

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

    回复
    0
  • 怪我咯

    怪我咯2017-05-16 13:16:11

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

    回复
    0
  • 漂亮男人

    漂亮男人2017-05-16 13:16:11

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

    是你自己写错了!

    回复
    0
  • 巴扎黑

    巴扎黑2017-05-16 13:16:11

    你自己写错了

    回复
    0
  • ringa_lee

    ringa_lee2017-05-16 13:16:11

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

    回复
    0
  • 取消回复