I want to get the current day from a date, and if it's a Firday, I want to set the date for next Monday. Any idea please to resolve it
Try this
$date = "11-3-2016"; echo date('w', strtotime($date)); //5 echo date('l', strtotime($date));//Friday