Skip to navigation
get 8 random letters and numbers with php
27.10.19
$str = 'abcdefghijklmnopqrstuvwxyz01234567891011121314151617181920212223242526'; $shuffled = str_shuffle($str); $shuffled = substr($shuffled,1,8); $code = strtoupper($shuffled); return $code;
https://www.php.net/manual/en/function.str-shuffle.php
Reply
Anonymous
Information Epoch 1745991956
Use lower case and keep it short.
Home
Notebook
Contact us