3v4l.org

run code in 300+ PHP versions simultaneously
<?php $week_number = 20; $year = 2012; $monday = strtotime($year."W".str_pad($week_number,2,0,STR_PAD_LEFT)."1"); $sunday = strtotime($year."W".str_pad($week_number,2,0,STR_PAD_LEFT)."7"); echo "From " . date("l", $monday) . " " . date("j", $monday) . " of " . date("F", $monday) . " of " . $year . " to " . date("l", $sunday) . " " . date("j", $sunday) . " of " . date("F", $sunday) . " of " . $year;

preferences:
42.38 ms | 402 KiB | 5 Q