Skip to content

Generar un password automatico

  1. function randomPass($longitud)
  2. {
  3.     $pattern = “1234567890abcdefghijklmnopqrstuvwxyz”;
  4.     for($i=0;$i<$longitud;$i++)
  5.     {
  6.          $key .= $pattern{rand(0,35)};
  7.     }
  8.     return $key;
  9. }