我有一個功能,我發現做這方面的工作,但我試圖使它與GMT UTC時間戳工作:PHP的「倒計時直到」和「因爲時間」 GMT UTC時間功能
編輯: 也許我的問題是與我改怎麼「轉換」用戶輸入時間GMT ...
我是做
$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小時。
任何想法可能會發生什麼?
也許一個錯誤在於我如何節省目標時間? 當有人提出一個時間的轉換和存儲這樣
用戶提交的時間總是開始時看起來像這樣爲自己的本地時間: 2011年7月20日下午11:00
然後:
$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'類內置了很多這樣的功能。 –
'PHP 5.2 FastCGI'是目前根據我的主機提供商設置的。它給了我一個選擇'PHP 5.3 FastCGI'的選項,如果我開關。我怎麼能做我想要完成的事情? – brybam