Skip to content

Instantly share code, notes, and snippets.

@vansosnin
Created August 12, 2015 04:24
Show Gist options
  • Save vansosnin/aab554cb25226b5104c5 to your computer and use it in GitHub Desktop.
Save vansosnin/aab554cb25226b5104c5 to your computer and use it in GitHub Desktop.
Fixed length random number
<?php
function big_rand($len = 9)
{
$rand = '';
while (!(isset($rand[$len - 1]))) {
$rand .= mt_rand();
}
return substr($rand, 0, $len);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment