好的。。所以我给自己制造了一个混乱的问题。
所以我有一个jquery滑块,它显示内容的5张幻灯片
1( -2小时前
2( -1小时前
3( (0(当前
4( +1小时
5( +2小时
每张幻灯片的内容由一天中的时间决定。然而,当在运行到午夜和午夜后的1到2个小时内尝试前后切换时,整个脚本会中断,并导致网站崩溃。
<?php
$h = date('G', strtotime ("-2 hour")); //set variable $h to the hour of the day.
$m = date('i', strtotime ("-2 hour")); //set variable $m to the min of the hour.
$d = date('w', strtotime ("-2 hour")); //set variable $d to the day of the week.
// SATURDAY SCHEDULE
if ($d == 6 && $h >= 0 && $h < 07) $file ='earlyhours.php';
else if ($d == 6 && $h >= 07 && $h < 09) $file ='breakfast.php';
else if ($d == 6 && $h >= 09 && $h < 12) $file ='throughthemorning.php';
else if ($d == 6 && $h >= 12 && $h < 13) $file ='rewind.php';
else if ($d == 6 && $h >= 13 && $h < 17 && $m <= 30) $file ='nonstop.php';
else if ($d == 6 && $h >= 17 && $m >= 30 && $h <21) $file ='livetrend.php';
else if ($d == 6 && $h >= 17 && $m >= 35 && $h < 21) $file ='nonstop.php';
else if ($d == 6 && $h >= 21 && $h < 18) $file ='gennation.php';
else if ($d == 6 && $h >= 23) $file ='earlyhours.php';
else if ($d == 7 && $h >= 0) $file ='earlyhours.php';
require $_SERVER['DOCUMENT_ROOT'] . '/collection/profiles/' . $file . '';
?>
正如你所看到的,它计算时间,然后放入正确的文件-一周中每天有五个文件(-2.php、-1.php、0.php、1.php、2.php(
有人有解决方案吗?理想情况下,我需要停止休息,但我不希望我的访客在接近午夜时滚动+1/2或-1/2小时进行同一天的轮换。
例如,现在-2.php上的代码至少在凌晨2点(我的时区(之前都会中断,这样它就可以回到正轨。
想弄清楚这件事,我已经筋疲力尽了。
由于一天的变化而产生的问题可能会变得棘手。我会用另一种方式来解决这个问题。首先计算你感兴趣的五个时段的日期和时间,并使用DateTime
来完成繁重的工作。然后,使用一个函数来提供特定日期/时间组合的日程项目。
这是一个骨架
<?php
date_default_timezone_set('Pacific/Auckland');
$now = new DateTime();
$oneHour = new DateInterval('PT1H');
$minusOne = (clone $now);
$minusOne->sub($oneHour);
$minusTwo = (clone $minusOne);
$minusTwo->sub($oneHour);
$plusOne = (clone $now);
$plusOne->add($oneHour);
$plusTwo = (clone $plusOne);
$plusTwo->add($oneHour);
echo returnFile($minusTwo);
echo returnFile($minusOne);
echo returnFile($now);
echo returnFile($plusOne);
echo returnFile($plusTwo);
function returnFile(DateTime $t) {
$day = $t->format('D');
$hour = $t->format('G');
// echo "Day:$day, Hour: $hour;<br>";
switch ($day) {
case 'Mon':
if ($hour<7) {
// Small hours Monday...
$filename = "smallMonday.html";
break;
}
if ($hour<12) {
// Monday morning
$filename = "morningMonday.html";
break;
}
break;
case 'Tue':
if ($hour >=23) {
// Late Tuesday
$filename = "lateTuesday.html";
}
default:
$filename = "Some other time";
}
return $filename;
}
?>
我还没有制定一个完整的时间表,你可以解决的。
如果您使用的是PHP 5.5或更高版本,您可以使用DateTimeImmutable,而不是DateTime,它可以取消所有克隆。
这里有一把小提琴
去掉比较中的前导零。这些是八进制数字而不是小数。你不会得到你期望的结果。
// 09 is not a valid octal number. It gets converted to zero in decimal.
else if ($d == 6 && $h >= 07 && $h < 09)
..
else if ($d == 6 && $h >= 09 && $h < 12) $file ='throughthemorning.php';