gpt4 book ai didi

javascript - 我需要将网站重定向到 21.45 到 10.00 之后的页面

转载 作者:行者123 更新时间:2023-12-03 05:38:29 28 4
gpt4 key购买 nike

我需要将网站重定向到 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>";
}
?>

最佳答案

不太确定时区,但是

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

关于javascript - 我需要将网站重定向到 21.45 到 10.00 之后的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40642818/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com