Beh, devi solo tradurre quello che hai detto in codice:
Codice PHP:
$first_wednesday_of_this_month = strtotime('first wednesday of this month');
$first_wednesday_of_next_month = strtotime('first wednesday of next month');
$now = time();
if ($first_wednesday_of_this_month <= $now && $now <= $first_wednesday_of_this_month + 27 * 60 *60) {
echo "Attualmente l'evento è in corso: " . date('d-m-Y', $first_wednesday_of_this_month);
}
else {
echo "Primo mercoledì del prossimo mese: " . date('d-m-Y', $first_wednesday_of_next_month);
}