“Rand String Php” Réponses codées

Générateur de chaînes aléatoires PHP

function generateRandomString($length = 25) {
    $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $charactersLength = strlen($characters);
    $randomString = '';
    for ($i = 0; $i < $length; $i++) {
        $randomString .= $characters[rand(0, $charactersLength - 1)];
    }
    return $randomString;
}
//usage 
$myRandomString = generateRandomString(5);
Grepper

RandomString PHP

//generates 13 character random unique alphanumeric id
echo uniqid();
//output - 5e6d873a4f597
Impossible Ibis

Générer une chaîne aléatoire en php

phpCopy<?php 
$Random_str = uniqid();  
echo "Random String:", $Random_str, "\n";
?> 
CodeGuruDev

randstring php

<?php 
    $random = substr(md5(mt_rand()), 0, 7);
    echo $random;
?>
Mysterious Markhor

chaîne aléatoire PHP

function rand_str() {
    $characters = '0123456789-=+{}[]:;@#~.?/&gt;,&lt;|\!"£$%^&amp;*()abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $randomstr = '';
    for ($i = 0; $i < random_int(50, 100); $i++) {
      $randomstr .= $characters[rand(0, strlen($characters) - 1)];
    }
    return $randomstr;
  }
hateschoollovecoding

Rand String Php

    function RandomString()
    {
        $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
        $randstring = '';
        for ($i = 0; $i < 10; $i++) {
            $randstring = $characters[rand(0, strlen($characters))];
        }
        return $randstring;
    }
Mysterious Markhor

Réponses similaires à “Rand String Php”

Questions similaires à “Rand String Php”

Plus de réponses similaires à “Rand String Php” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code