0

我有一个表单,允许用户使用 2 个 jquery 日期选择器输入事件的长度,然后使用日期将其存储在数据库中。

然后我返回事件持续的天数,但我需要排除周末。

例如,如果事件从周一持续到周一,则返回的结果将为 6。

这是我目前从 2 个日期范围返回天数的方式:

<?=(($currentCourseDates)?ceil((strtotime($currentCourseDates[0]['enddate']." 00:00:00") - strtotime($currentCourseDates[0]['startdate']." 00:00:00")) / 86400)+1:0)?>
4

1 回答 1

1

这里有很多解决方案:计算 php 的工作日、使用数组、递归、编号

于 2012-08-23T11:09:04.480 回答