我正在使用我发现可以这样做的函数,但我正试图使其与GMT utc时间戳一起工作:
编辑:也许我的问题是我如何"转换"用户输入时间到GMT…
I was doing
$the_user_input_date = strtotime('2011-07-20T01:13:00');
$utctime = gmdate('Y-m-d H:i:s',$the_user_input_date);
gmdate('Y-m-d H:i:s',$the_user_input_date);
实际上没有"转换"到gmt吗?它只是格式化吗?也许这就是我的问题。
我可以提供的时间是这样的:
//local time in GMT
2011-07-20T01:13:00
//future time in GMT
2011-07-20T19:49:39
我试着让这个工作像:
Started 36 mins ago
Will start in 33 mins
Will start in 6 hrs 21 mins
Will start in 4 days 4 hrs 33 mins
这是我目前正在做的:
EDIT: new php code im working with, seems to ADD 10 HOURS on to my date. Any ideas? I updated it here:
function ago($from)
{
$to = time();
$to = (($to === null) ? (time()) : ($to));
$to = ((is_int($to)) ? ($to) : (strtotime($to)));
$from = ((is_int($from)) ? ($from) : (strtotime($from)));
$units = array
(
"year" => 29030400, // seconds in a year (12 months)
"month" => 2419200, // seconds in a month (4 weeks)
"week" => 604800, // seconds in a week (7 days)
"day" => 86400, // seconds in a day (24 hours)
"hour" => 3600, // seconds in an hour (60 minutes)
"minute" => 60, // seconds in a minute (60 seconds)
"second" => 1 // 1 second
);
$diff = abs($from - $to);
$suffix = (($from > $to) ? ("from now") : ("ago"));
foreach($units as $unit => $mult)
if($diff >= $mult)
{
$and = (($mult != 1) ? ("") : ("and "));
$output .= ", ".$and.intval($diff / $mult)." ".$unit.((intval($diff / $mult) == 1) ? ("") : ("s"));
$diff -= intval($diff / $mult) * $mult;
}
$output .= " ".$suffix;
$output = substr($output, strlen(", "));
return $output;
}
@Jason
我尝试了你的建议:
function ago($dateto)
{
$datetime1 = new DateTime( $dateto);
$datetime2 = new DateTime();
$interval = $datetime1->diff($datetime2);
// print_r($interval);
$format = '';
if ($interval->h) {
$format .= ' %h ' . ($interval->h == 1 ? 'hour' : 'hours');
}
if ($interval->i) {
$format .= ' %i ' . ($interval->i == 1 ? 'minute' : 'minutes');
}
// more logic for each interval
if ($format) {
echo $interval->format($format), ' ago';
}
else {
echo 'now';
}
}
这似乎总是给我增加10个小时的时间。
你知道是怎么回事吗?
也许错误在于我如何节省目标时间?当有人提交时间时,它会像这样进行转换和存储
用户提交的时间将总是像这样开始,作为他们的本地时间:07/20/2011 11:00 pm
:
$time = mysql_real_escape_string($_POST['time']);
$the_date = strtotime($time);
//make user input time into GMT time
$utctime = gmdate('Y/m/d H:i:s',$the_date);
$query = "INSERT INTO $table (time) VALUES ('$utctime');";
mysql_query($query);
如果您可以访问PHP>= 5.3,我建议您使用DateTime::diff()
。返回的DateInterval
为您提供了显示所需的所有部分,并且具有自己的方法,例如format()
。
这里有一个例子给你一个想法。在PHP文档链接的注释中有更完整的示例。
<?php
$datetime1 = new DateTime('2011-07-20');
$datetime2 = new DateTime();
$interval = $datetime1->diff($datetime2);
// print_r($interval);
$format = '';
if ($interval->h) {
$format .= ' %h ' . ($interval->h == 1 ? 'hour' : 'hours');
}
if ($interval->i) {
$format .= ' %i ' . ($interval->i == 1 ? 'minute' : 'minutes');
}
// more logic for each interval
if ($format) {
echo $interval->format($format), ' ago';
}
else {
echo 'now';
}
它输出(在我的系统上):
22 hours 10 minutes ago
您的$datefrom
是字符串,但$dateto
是整型。你不能这样减去它们。
代替:
$datefrom=gmdate("Y/m/dTH:i:sZ");
:
$datefrom=time();
p。我没有检查剩下的代码