Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $charset = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_";
- function uyid (&$charset, int $length = 11) : string {
- $id = "";
- for($i = 0; $i < $length; $i++) {
- $id .= $charset[mt_rand(0, strlen($charset) - 1)];
- }
- return $id;
- }
- print_r(uyid($charset, 11));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement