3v4l.org

run code in 300+ PHP versions simultaneously
<?php // all fridays from startingdate till NOW $display_only_the_most_recent_friday = false; // all fridays or most recent only $startingDate = strtotime('2013-01-01'); // lets test from start of 2013 $start = time(); // now $end = $startingDate; // our loop will $start from now and scan back till the $end // we will check every day from $start to $end // in every loop we are going one day back -=(60 * 60 * 24) for($checkdate=$start;$checkdate>=$end; $checkdate -=(60 * 60 * 24)) { if ( date('N', $checkdate) == "5" ) // and if this day is the fifth day we echo { echo '<a href="https://www.extranet.frostyacres.com/portal_resources/1/Market Report '.date('m-d-y', $checkdate).'.pdf">Market Reports</a>'; if($display_only_the_most_recent_friday) break; } } ?>

preferences:
32.26 ms | 402 KiB | 5 Q