Generating a random numbers and letters

前端 未结 15 1176
梦如初夏
梦如初夏 2020-12-25 08:23

Can I ask for a certain code on how to generate a random letters and numbers in one word. I know there\'s a PHP function rand(), but I don\'t know if it\'s also applicable w

15条回答
  •  粉色の甜心
    2020-12-25 08:43

    This was an easy way for me- this generates a 15 character string -

            $alph = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
            $code='';
    
            for($i=0;$i<15;$i++){
               $code .= $alph[rand(0, 35)];
            }
    

提交回复
热议问题