Skip to content

Instantly share code, notes, and snippets.

@Michaelkodji
Created May 27, 2020 11:30
Show Gist options
  • Save Michaelkodji/f185ae390ec81b2ae36a3e7c0d3b0939 to your computer and use it in GitHub Desktop.
Save Michaelkodji/f185ae390ec81b2ae36a3e7c0d3b0939 to your computer and use it in GitHub Desktop.
Generate a automatic code
<?php
function passgen2($nbChar){
return substr(str_shuffle('abcdefghijklmnopqrstuvwxyzABCEFGHIJKLMNOPQRSTUVWXYZ0123456789'),1, $nbChar); }
echo passgen2(9);
// Affiche un password comme : M9ytp5Pbcn
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment