Skip to content

Instantly share code, notes, and snippets.

@mannieschumpert
Last active December 20, 2015 11:59
Show Gist options
  • Save mannieschumpert/6127173 to your computer and use it in GitHub Desktop.
Save mannieschumpert/6127173 to your computer and use it in GitHub Desktop.
Generate a random number of a given length in PHP.
<?php
// how long the string should be
$length = 8;
$num = '';
for ($i = 0; $i < $length; $i++) {
$num .= mt_rand(0, 9);
}
echo $num;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment