I'm trying to exclude a specific period from the date I'm going to print. I tried but without success.
The code I'm trying is this but not print anything and give me blank page:
$get_st_date = "2020-08-01";
$get_end_date = "2020-08-30";
$resultDelDate = strftime('%A %d %B', strtotime("+15 weekday"));
$get_period = new DatePeriod($get_st_date, $resultDelDate, $get_end_date);
echo $resultDelDate;
How can i do? Thanks!