Answers for "specific number of characters for my unique id php"

PHP
-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 "specific number of characters for my unique id php"

Browse Popular Code Answers by Language