gpt4 book ai didi

PHP - 如何使用 $timestamp 检查今天是星期一还是一个月的第一天?

转载 作者:IT王子 更新时间:2023-10-28 23:48:51 26 4
gpt4 key购买 nike

我一直在网上浏览示例,我发现它们有点神秘或矫枉过正。

我需要做的是这样的:

$timestamp = time();

然后找出这一天是星期一还是月初?

我确信这是可能的,我只是不知道该怎么做。

最佳答案

其实你不需要时间戳变量,因为:

摘自date php.net的功能:

Returns a string formatted according to the given format string using the given integer timestamp or the current time if no timestamp is given. In other words, timestamp is optional and defaults to the value of time().

if(date('j', $timestamp) === '1') 
echo "It is the first day of the month today\n";

if(date('D', $timestamp) === 'Mon')
echo "It is Monday today\n";

关于PHP - 如何使用 $timestamp 检查今天是星期一还是一个月的第一天?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14063336/

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