查看文件: make_user.php
大小: 851 字节
类型: application/octet-stream
<? function mychar($v){ $char = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';//abcdefghijklmnopqrstuvwxyz';// W 26 *12 // echo ($v )."==> <br>"; if($v<14){ $str= substr($char,0,1).$v;} else if($v<314){ $ct3=0; $v=$v-2; $ct2=($v % 12)+1 ; $ct1=floor($v/12); $str=substr($char,$ct1,1).$ct2; } else { // 313 312 312 // A A A 625 $v1=$v-2; $s1 = floor($v1 / 12); //26 count(w) >26 =0 $c1= floor( $s1 / 26)-1; $c2=floor(($v-314)/12); $c2a=($c2 % 26); $rv=$v-2; $ct2=($rv % 12)+1; //$str=substr($char,$c1,1).',s2:'.$s2.','.substr($char,$c2,1).','.$ct2; $str=substr($char,$c1,1).substr($char,$c2a,1).$ct2; } return $str; } for ($i = 1; $i < 12000; $i++) { echo $i."==>". mychar($i)."<br>"; } ?>
保存
取消
返回文件列表