Skip to content

Instantly share code, notes, and snippets.

@acfreitas
Last active August 29, 2015 14:10
Show Gist options
  • Save acfreitas/234a560b1ce261d9ade9 to your computer and use it in GitHub Desktop.
Save acfreitas/234a560b1ce261d9ade9 to your computer and use it in GitHub Desktop.
Int Random
/**
* @param int $size
* @return interger
*/
public function intRandom($size) {
$validCharacters = utf8_decode("0123456789");
$validCharNumber = strlen($validCharacters);
$int = '';
while (strlen($int) < $size) {
$index = mt_rand(0, $validCharNumber - 1);
$int .= $validCharacters[$index];
}
return $int;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment