gpt4 book ai didi

php 检查日期是星期六

转载 作者:可可西里 更新时间:2023-11-01 13:07:35 25 4
gpt4 key购买 nike

如何检查日期是否为星期六。

<input id="datePicker" name="datePicker" type="text" class="textinput date-pick">

我的代码:

if(date('Y-m-d', strtotime('this Saturday')) == $_SESSION['search_date']) {
echo 'Event this saturday';
} else {
echo 'Event on the others day';
}

以上代码仅在下周事件中回显!如果我搜索 week after 或 3 week 等,是否没有显示结果?

最佳答案

看看date()在 php 文档中。您可以将代码更改为如下内容:

if(date('w', strtotime($_SESSION['search_date'])) == 6) {
echo 'Event is on a saturday';
} else {
echo 'Event on the others day';
}

关于php 检查日期是星期六,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5298757/

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