我正在尝试在 php 中创建日历。我需要得到该月第一天的工作日(周日、周一等)。到目前为止,我的代码是:
<?php
$current_month = date("n");
$current_year = date("Y");
$first_day_of_month = new DateTime();
$first_day_of_month -> setDate($current_year,$current_month,1);
?>
我被困在如何获得设定日期的工作日(每月的第一天)。有什么建议么?