admin管理员组文章数量:1349167
Basically I need to display how much time till a specified time or if its passed, how much time since it passed.
The original string would look just like this: 07/20/2011 01:13 am
EDIT: switched from doing conversion in javascript to php:
//get local time in UTC format
echo gmdate("Y/m/d\TH:i:s\Z");
echo '<br />';
//convert time to UTC
$the_date = strtotime("07/20/2011 01:13 am");
echo date("Y/m/d\TH:i:s\Z",$the_date);
Doing the above gives me these to work with:
//local time
2011/07/20T19:49:39Z
//specified time
2011/07/20T01:13:00Z
How can I take the specified time, and the local time and make it display something like these examples:
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
Basically I need to display how much time till a specified time or if its passed, how much time since it passed.
The original string would look just like this: 07/20/2011 01:13 am
EDIT: switched from doing conversion in javascript to php:
//get local time in UTC format
echo gmdate("Y/m/d\TH:i:s\Z");
echo '<br />';
//convert time to UTC
$the_date = strtotime("07/20/2011 01:13 am");
echo date("Y/m/d\TH:i:s\Z",$the_date);
Doing the above gives me these to work with:
//local time
2011/07/20T19:49:39Z
//specified time
2011/07/20T01:13:00Z
How can I take the specified time, and the local time and make it display something like these examples:
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
Share
Improve this question
edited Jul 21, 2011 at 0:03
brybam
asked Jul 20, 2011 at 8:31
brybambrybam
5,02912 gold badges52 silver badges95 bronze badges
1
- I found a function that can be used to add or subtract minutes from a date, and it can easily be modified in order to add or subtract two dates: stackoverflow./questions/1197928/… – Anderson Green Commented Feb 25, 2013 at 4:44
2 Answers
Reset to default 6And if you want to do it in Javascript, it is slightly more painful but you get the benefit of a "live" countdown.
Here's a great breakdown of how to do that.
http://ditio/2010/05/02/javascript-date-difference-calculation/
See the manual. The example #3 with the use of datediff will help you too.
本文标签: how to display time until or time since a specified date javascript or phpStack Overflow
版权声明:本文标题:how to display time until or time since a specified date javascript or php - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743856300a2550915.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论