gpt4 book ai didi

mysql - 如何在Mysql中查找给定年份的星期开始和结束日期

转载 作者:行者123 更新时间:2023-11-30 23:34:49 25 4
gpt4 key购买 nike

如何找到给定年份和周数的一周的开始和结束日期?它用于在 Hr 模块项目中插入工作类次中每个员工的周日期,所以请帮助我

提前致谢,湿婆

最佳答案

function Start_End_Date_of_a_week($week, $year){
$time = strtotime("1 January $year", time());
$day = date('w', $time);
$time += ((7*$week)+1-$day)*24*3600;
$dates[0] = date('Y-n-j', $time);
$time += 6*24*3600;
$dates[1] = date('Y-n-j', $time);
return $dates;
}

$result = Start_End_Date_of_a_week(35,1998);
echo 'Starting date of the week: '. $result[0]."\n";
echo 'End date the week: '. $result[1];

关于mysql - 如何在Mysql中查找给定年份的星期开始和结束日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8357337/

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