Skip to content

Instantly share code, notes, and snippets.

@jonsherrard
Created April 25, 2012 14:59
Show Gist options
  • Save jonsherrard/2490373 to your computer and use it in GitHub Desktop.
Save jonsherrard/2490373 to your computer and use it in GitHub Desktop.
Random string generator a-la imgur urls etc.
<?php
function generate_string($length) {
$chars = "0123456789abcdefghijklmnopqrstuvwxyz";
$string = "";
for ($i = 0; $i < $length; $i++) {
$string .= $chars[mt_rand(0, strlen($chars) - 1)];
}
return $string;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment