Skip to content

Instantly share code, notes, and snippets.

@matsubo
Created April 3, 2023 03:09
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 matsubo/516201c7a7e8973a55f18825500e2929 to your computer and use it in GitHub Desktop.
Save matsubo/516201c7a7e8973a55f18825500e2929 to your computer and use it in GitHub Desktop.
<?php
$result = [
0 => 0,
1 => 0
];
for ($i = 0 ; $i < 100000000 ; $i++) {
$rand_number = mt_rand();
$result[$rand_number%2]++;
}
print_r($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment