转换有最后三位数的问题

时间:2018-04-09 11:58:42

标签: php

我在转换时间戳时遇到问题,以毫秒为单位。我必须通过时间戳从api获取数据 以下是来自api网站的原始时间戳

     API timestamp 1520683685974 (30 days back from current time )

    if you look 1520683685 this is real timestamp 

    the last 3 digit 974 i don't know how it come 

我正在尝试以下方法来获取时间戳,但无法获得最后3位额外

      $currentDate =  time();
      $date = strtotime(date("Y-m-d H:i:s", $currentDate)."-30 day ");
      output= 1520682524

最后一位数字3位我不知道如何获得。任何人都可以知道最后3位数

您可以在以下链接上转换原始时间戳,以了解最后3位数可能是某人知道的

https://www.epochconverter.com/

0 个答案:

没有答案