01.
function
codeGenerate(
$length
)
02.
{
03.
srand(
date
(
"s"
));
04.
$chars
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZ123456789"
;
05.
$ret_str
=
""
;
06.
$num
=
strlen
(
$chars
);
07.
$input
= 8;
08.
for
(
$i
=0;
$i
<
$length
;
$i
++){
09.
if
(
strlen
(
$ret_str
)>=
$input
) {
10.
$ret_str
.=
"-"
;
$input
+=9;
$length
++;
11.
}
else
{
$ret_str
.=
$chars
[rand()%
$num
];}
12.
}
13.
return
$ret_str
;
14.
}