Skip to content

Instantly share code, notes, and snippets.

@subins2000
Created April 12, 2016 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save subins2000/40d8023cfaf2d0836c5e33a616a2e747 to your computer and use it in GitHub Desktop.
Save subins2000/40d8023cfaf2d0836c5e33a616a2e747 to your computer and use it in GitHub Desktop.
<?php
function random($occurence = 4, $range = 100){
return rand(1, $range) % $occurence === 0;
}
$count = 0;
for($i=1;$i < 100;$i++){
random($argv[1]) === true ? $count++ : 0;
}
var_dump($count);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment