Skip to content

Instantly share code, notes, and snippets.

@celestora
Created May 6, 2018 12:16
Show Gist options
  • Save celestora/116b57fb5238f5dc43d5cf55f79283af to your computer and use it in GitHub Desktop.
Save celestora/116b57fb5238f5dc43d5cf55f79283af to your computer and use it in GitHub Desktop.
<?php
#Simple function for random string generation
function str_rand($length) {
$string = '';
for ($i = 1; $i <= $length; $i++) {
$string .= chr(random_int(48, 122));
}
return $string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment