This article mainly introduces the process of PHP program development. We often use the login interface or Make some four-digit verification codes in the comment interface. Friends who need it can refer to it
So we know that simple four-digit pure number verification in php can be done with rand(1000,9999), but if we want to get random four-digit numbers of letters and numbers, then how should we write a function Woolen cloth? Hu Peng's blog below gives a complete example under the PHP information column.
?
3 6 13 14 |
<🎜>function GetfourStr($len)<🎜> <🎜>{<🎜> <🎜>$chars_array = array(<🎜> <🎜>"0", "1", "2", "3", "4", "5", "6", "7", "8", "9",<🎜> <🎜>"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k",<🎜> <🎜>"l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v",<🎜> <🎜>"w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G",<🎜> <🎜>"H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R",<🎜> <🎜>"S", "T", "U", "V", "W", "X", "Y", "Z",<🎜> <🎜>);<🎜> <🎜>$charsLen = count($chars_array) - 1;<🎜> <🎜> <🎜> <🎜>$outputstr = "";<🎜> <🎜>for ($i=0; $i<$len; $i )<🎜> <🎜>{<🎜> <🎜>$outputstr .= $chars_array[mt_rand(0, $charsLen)];<🎜> <🎜>}<🎜> <🎜>return $outputstr;<🎜> <🎜>}<🎜> <🎜>echo GetfourStr(4);<🎜> <🎜>?> |