gpt4 book ai didi

每个星期五工作的php脚本

转载 作者:行者123 更新时间:2023-12-02 07:05:43 26 4
gpt4 key购买 nike

我有这个脚本,每天工作 2 小时。现在,我有两个问题:1)我如何让它只在每个星期五而不是整天工作?2)我如何使用分米码? $hour:$min > 8:15 不工作

<?php
$hour = date('G');
if ($hour >= 8 && $hour <= 10) {
include('facut_mine2.php');

}
?>

谢谢!

最佳答案

使用date('w')获取工作日

<?php
$start = strtotime('8:15');
$end = strtotime('9:45');

if(date('w') == 5){ // day 5 = Friday
$timenow = date('U');
if ($timenow >= $start && $timenow <= $end) {
include('facut_mine2.php');
}
}
?>

关于每个星期五工作的php脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12384006/

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