Answers for "php unique id"

PHP
2

php unique id

uniqid ([ string $prefix = "" [, bool $more_entropy = FALSE ]] ) : string
Posted by: Guest on March-16-2020
-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

Browse Popular Code Answers by Language