PHP - 如何使用 $timestamp 检查今天是否为星期一或当月 1 日?
日期函数可用于根据给定整型时间戳或未给定时间戳时的当前时间返回格式化的字符串
时间戳是可选的,默认为 time() 的值。
示例
if(date('j', $timestamp) === '1') echo "It is the first day of the month today
"; if(date('D', $timestamp) === 'Mon') echo "It is Monday today
";
输出
这将生成以下输出 −
It is the first day of the month today
广告