我在这里找到了一个PHP函数,您可以在其中计算一个月中的工作日总数。我需要一个函数来计算本月的PAST工作日。像这样:
echo "It has been ".$days." working days this month";
有什么想法吗?这让我很头疼:))
编辑: 这是我用来获取本月工作日总数的功能:
function calculateWorkingDaysInMonth( $month = '',$year = '') {
$year = $year?$year:date('Y');
$month =$month?$month:date('m');
$daysinmonth=date('t', mktime(0, 0, 0, $month, 1, $year));
$business=0;
for ($i=1;$i<=$daysinmonth;$i++)
(date('w',mktime(0, 0, 0, $month, $i, $year))%6)?$business++:1;
return $business;
}