我需要在21.45到10.00之后重定向到页面

时间:2016-11-16 21:37:54

标签: javascript php jquery html

我需要在21.45到10.00之后将网站重定向到页面 我需要一个脚本,可以在某个时间将重定向站点重定向到另一个页面。

这里发生了什么。

<?php
 $date = new DateTime('now');
         $date->setTimezone(new DateTimeZone('Europe/Athens'));
     if ($date->format('H')>=10 && $date->format('H')<=21  ){
        if ($date->format('H')==21 && $date->format('i')<45)    
          echo "<script>window.location = '/'</script>";                  
        else if($date->format('H')<21)
          echo "<script>window.location = '/'</script>";
     } 
?>

1 个答案:

答案 0 :(得分:1)

不确定时区,但

$hoursMinutes = intval(date("Hi"));
if($hoursMinutes >= 1000 && $hoursMinutes <=2145) {
    header("Location: /2");
} else {
    header("Location: /1");
}