dongxu1875 2016-08-11 13:25
浏览 251
已采纳

在laravel中将unix时间戳转换为人类可读日期

Sorry, This can be a repeated question.But still i didn't get the correct answer.

I have a unix timestamp '1470900186868', it should be convert into 'Thu, 11 Aug 2016 07:23:06.868 GMT' but i am always getting the same value which is 'December 20, 48580 @ 17:14:28 UTC'.

Thanks in Advance.

  • 写回答

2条回答 默认 最新

  • dongyue0263 2016-08-11 13:43
    关注
    <?php
    $val = 1470900186868;
    
    // Grab the milliseconds as the initial value mod 1000
    $milliseconds = $val % 1000;
    
    // Divide by 1000 to obtain the actual timestamp
    $ts = intval($val / 1000);
    
    // Parse into a DateTime object
    $date = DateTime::createFromFormat('U', $ts);
    
    // Formatted output
    echo $date->format('D, d M Y H:i:s') . '.' . $milliseconds;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?