PHP 获取 本周 本月 本年 时间戳

还是 PHP 的 strtotime 函数使用,之前一篇文章《PHP 获取零点时间戳》讲过。

这里只是贴出代码

echo '<br> 今年 1 月 1 日 零点 时间戳: ' . strtotime('midnight first day of january this year');
echo '<br> 本月 1 日 零点 时间戳: ' . strtotime('midnight first day of this month');
echo '<br> 本周一 零点 时间戳: ' . strtotime('monday this week');

具体原理 以及更多使用方法查看 相对时间格式 

Post Author: admin