-2

如何通过给定的时间戳获取时间段(日、周、月)?我不想要日期。我想要基于秒数的下一个时间段。

是否有用于此的 PHP 本机函数?

例子:

$period = getTimeperiod( 15638400 );

我的尝试:我可以检查并计算秒数:

if x <= 60 => min
if x <= 60*60 => hour
if x <= 60*60*24 => day
...

编辑:

时间段是指分钟、小时、日、周……如上所述……?!所以我想要的只是时间戳的相应时间段。

示例: ( day = 86400 secs) 那么时间戳getTimeperiod( 85000 )应该是“天”。

4

3 回答 3

0

我认为您正在寻找类似 DateInterval 类的东西...

它是 PHP 5.3.0 的一部分,并且有一个名为 createFromDateString() 的静态函数,您可以在其中从“3600 秒”之类的字符串设置 DateInterval。然后,您可以从该对象中获取日、月、年等。

看看这个页面: http ://www.php.net/manual/de/dateinterval.createfromdatestring.php

于 2013-05-22T11:24:32.203 回答
0

我是这样解决的:

  /*
  seconds     0
  minutes     1
  hours       2
  days        3
  week        4
  month       5
  year        6
  decade      7
  century     8
  millenium   9
  */

  $arTimes = array(
     0 => 1,
     1 => 60,
     2 => 60*60,
     3 => 60*60*24,
     4 => 60*60*24*7,
     5 => 60*60*24*7*4,
     6 => 60*60*24*7*4*12,
     7 => 60*60*24*7*4*12*10,
     8 => 60*60*24*7*4*12*10*10,
     9 => 60*60*24*7*4*12*10*10*10
  );

  $nDiff = strtotime( $nTo ) - strtotime( $nFrom );

  switch( $nDiff )
  {
     // check difference and time period
     case $nDiff <= $arTimes[ 1 ]:
        $nGranularity = 0;
        break;
     ...
  }
于 2013-05-23T09:53:06.713 回答
0

但这是否在返回间隔对象(句点)的正确路径上?感谢@SimonSimCity 指出DateInterval。如果你指导我,我可以改进答案。

<?php 
$timestamp = 15638400;
echo "The timestamp $timestamp is " . date("Y-m-d H:i:s", 15638400) . "<br \>";

echo "<pre>";
print_r  (DateInterval::createFromDateString(date("Y \\y\\e\\a\\r\\s m \\m\\o\\n\\t\\h\\s d \\d\\a\\y\\s\\ H \\h\\o\\u\\r\\s i \\m\\i\\n\\u\\t\\e\\s s \\s\\e\\c\\o\\n\\d\\s", 15638400 ) ) );
echo "</pre>"
?>

输出

The timestamp 15638400 is 1970-07-01 00:00:00
DateInterval Object
(
    [y] => 1970
    [m] => 7
    [d] => 1
    [h] => 0
    [i] => 0
    [s] => 0
    [invert] => 0
    [days] => 0
)
于 2013-05-22T12:09:37.977 回答