Answers for "how to add unique id in php with 10 letters"

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 add unique id in php with 10 letters"

Browse Popular Code Answers by Language