Answers for "php generate code unique"

PHP
0

php unique random number

$uniqueCode = md5(uniqid(rand(), true)); echo $uniqueCode;
Posted by: Guest on March-24-2021
-1

php generate unique id for word

function gen_uid($l=10){
    return substr(str_shuffle("0123456789abcdefghijklmnopqrstuvwxyz"), 0, $l);
}
Posted by: Guest on August-28-2021

Code answers related to "php generate code unique"

Browse Popular Code Answers by Language