我想在此片段中仅显示工作日(周一,周二,周三,周四,周五):<?=date('D M, d', strtotime('+3 days'))?>
我无法知道在StackOverflow中搜索什么内容。我搜索“根据工作日计算未来日期”或“检查日期是否为周末PHP”并未产生我能够理解的向前发展。
使用案例:作为客户,我想知道我多久收到服务。这段代码将告诉我何时可以获得服务,3个工作日的日子(即使在假期)。
我发现了这个,http://php.net/manual/en/intlcalendar.getdayofweektype.php但我仍然被卡住了:(
答案 0 :(得分:3)
如果你只想要工作日那么strtotime可以做到这一点。
date('D M, d', strtotime('+3 weekdays'))
相对日期/时间格式: http://www.php.net/manual/en/datetime.formats.relative.php