gpt4 book ai didi

php - 获取本周的时间戳

转载 作者:可可西里 更新时间:2023-11-01 12:44:03 25 4
gpt4 key购买 nike

我有当天的日期时间。我需要获得本周开始和结束的两个 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

关于php - 获取本周的时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5449402/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com