strtotime 表示从实际周开始的工作日
我正在尝试获取我们实际所在周的开始星期一日期。就像我们是 7 月 15 日,希望使用 strtotime 得到结果以返回 7 月 11 日...
我已经尝试过了,
strtotime("-1 weekdays");
但没有运气...什么可以请是实际一周的功能。
谢谢
I'm trying to get the starting monday date of the actual week we are in. Like we are July 15th and would like to have the result with strtotime to return July 11th...
I've tried
strtotime("-1 weekdays");
Without luck... What could be the function for the actual week please.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
$timestamp = strotime('本周星期一');
会给你星期一! ;)
$timestamp = strotime('monday this week');
Will give you Monday! ;)
这些都没有帮助您找到答案吗?
Did none of these help you to find your answer?