Last active
September 13, 2019 21:33
-
-
Save ikarius6/be5f71286e737d47ffda81cc95bd498c to your computer and use it in GitHub Desktop.
Programmer's day on Friday 13 average years - JSON Voorhees
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Programmer's day on Friday 13 average years - JSON Voorhees | |
$r=$i=0; | |
for ($y=$ly=0; $y<3000; $y++) { | |
$d = new DateTime(); | |
$d->setDate($y, 1, 256); | |
if ($d->format("D") == "Fri" && $d->format('d') == 13) { | |
$r += $y - $ly; | |
$ly = $y; | |
$i++; | |
//echo $y . "<br/>"; | |
} | |
} | |
echo $r/$i; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment