Aller au contenu

PHP : String Random

//RANDOM STRING
 function getStringRandom($size)
 {
       // Initialisation des caractères utilisables
      $characters = array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z");
      $stringToReturn="";
      for($i=0;$i<$size;$i++)
      {
              $stringToReturn .= ($i%2) ? strtoupper($characters[array_rand($characters)]) : $characters[array_rand($characters)];
      }

      return $stringToReturn;
 }

Exemple avec un string random d’une taille de 10

 echo getStringRandom(10);
Étiquettes:

Laisser un commentaire

Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *