Skip to content

Instantly share code, notes, and snippets.

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