我想默认的产生四位验证码,第一位要是数字,第二位是字母,第三位要是字母+数字。
---------------------------------------------------------------------
下面是我写的,我不知道怎么写,而且也报错,求大神!!!
<?php
header('content-type:text/html;charset=utf-8');
function test($type,$type2,$type3){
for ($i=1;$i<=4;$i++) {
$code.=$type(type2,type3);
return $code;
}
echo test(1,'a','1b');
灬紫羽