每天倒数到EST小时?

时间:2011-05-10 16:11:52

标签: php time countdown mktime

我如何计算每天的特定时间,例如美国东部时间下午12点...这样它将倒计时为1小时56分钟直到下午12点/午餐?我正在寻找简短而简单的东西,不需要CSS或JS,因为它将是文本,只有在页面刷新时才会更新。

2 个答案:

答案 0 :(得分:2)

我不确定你是否听过,但这个价值万亿美元的网站名为google.com。您可以搜索能够在网络上为您提供最佳结果的字词!尝试一下,hella很有用。

检查一下,这是第一个结果!

http://www.tripwiremagazine.com/2011/04/9-cool-jquery-countdown-scripts.html

答案 1 :(得分:0)

这是我正在寻找的,以防它可以帮助别人。

function countdown($year, $month, $day, $hour, $minute)
{

$the_countdown_date = mktime($hour, $minute, 0, $month, $day, $year, -1);
$current = time();

$difference = $the_countdown_date - $current;
if ($difference < 0) $difference = 0;

$days = floor($difference/60/60/24);
$hours = floor(($difference - $days*60*60*24)/60/60);
$minutes = floor(($difference - $days*60*60*24 - $hours*60*60)/60);

echo "Checkback in ".$hours." hours and ".$minutes." minutes";
}

countdown(2016,1,1,12,0);