So I have one date as a string:
2011/06/01
I need to get the 5 DateTime objects from it that correspond to the five weekdays (Monday to Fri
Try:
$dayAfter = $dateTime->modify('+1 day');
to get one day forward. For more information check the php manual on this class here.