Skip to content

Instantly share code, notes, and snippets.

@Ambalus
Created November 9, 2015 16:17
Show Gist options
  • Select an option

  • Save Ambalus/53e6e97c4ae6115ba6e2 to your computer and use it in GitHub Desktop.

Select an option

Save Ambalus/53e6e97c4ae6115ba6e2 to your computer and use it in GitHub Desktop.
<?php
function genpass($length = 16) {
$ch = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$string = '';
for ($i = 0; $i <= $length; $i++) {
$string .= $characters[mt_rand(0, strlen($ch)-1)];
}
return $string;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment