php – 获取当前时间的时间戳

前端之家收集整理的这篇文章主要介绍了php – 获取当前时间的时间戳前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个当天的日期时间.我需要获得两个unix时间戳的开始和本周的结束.我如何使用dateperiod或dateinterval类?
$now = time();
$beginning_of_week = strtotime('last Monday',$now); // Gives you the time at the BEGINNING of the week
$end_of_week = strtotime('next Sunday',$now) + 86400; // Gives you the time at the END of the last day of the week
原文链接:https://www.f2er.com/php/135582.html

猜你在找的PHP相关文章