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

更新时间:2020-04-07

897 次浏览

提升你的 职业

通过完成课程获得认证

开始
广告