Answers for "how to create customize unique id using phph"

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 "how to create customize unique id using phph"

Browse Popular Code Answers by Language