Answers for "php generate random string on different"

PHP
3

randomstring php

//generates 13 character random unique alphanumeric id
echo uniqid();
//output - 5e6d873a4f597
Posted by: Guest on June-08-2020
0

rand string php

function RandomString()
    {
        $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
        $randstring = '';
        for ($i = 0; $i < 10; $i++) {
            $randstring = $characters[rand(0, strlen($characters))];
        }
        return $randstring;
    }
Posted by: Guest on March-30-2020

Code answers related to "php generate random string on different"

Browse Popular Code Answers by Language