风动破

导航

文章分类 -  php

php 26进制
摘要://26进制转换function bb10($cc){ $len = strlen($cc); $res = 0; for($i=0,$j=1;$i<$len;$i++,$j*=26){ $res +=(int)(ord($cc[$len-$i-1])-64)*$j; } echo $res;}fu 阅读全文

posted @ 2019-04-16 23:38 风动破