3v4l.org

run code in 300+ PHP versions simultaneously
<?php $now = strtotime('now'); $next_monday = strtotime('Monday'); if (($next_monday-$now) < (4*86400)){ $next_monday = $next_monday + 604800;//add a week $start_date = date('Y-m-d', $next_monday+1555200) . "T00:00:00"; //add 18 days to get the 3rd friday }else{ $start_date = date('Y-m-d', $next_monday+1555200) . "T00:00:00"; //add 18 days to get the 3rd friday } echo $start_date; ?>

preferences:
47.5 ms | 402 KiB | 5 Q