Is there a way to use strtotime to add working days (Monday to Friday) to a date? Or some other method? What I want to do is:
strtotime
date ( 'Y-m-j' , strtotime ( '+3 working days' ) )
If you are limiting to weekdays use the string weekdays.
echo date ( 'Y-m-j' , strtotime ( '3 weekdays' ) );
This should jump you ahead by 3 weekdays, so if it is Thursday it will add the additional weekend time.
Source: http://www.php.net/manual/en/datetime.formats.relative.php
2.1m questions
2.1m answers
60 comments
57.0k users