- <?php
- function base62($x)
- {
- $show = '';
- while($x > 0) {
- $s = $x % 62;
- if ($s > 35) {
- $s = chr($s 61);
- } elseif ($s > 9 && $s <=35) {
- $s = chr($s 55);
- }
- $show .= $s;
- $x = floor($x/62);
- }
- return $show;
- }
-
- function urlShort($url)
- {
- $url = crc32($url);
- $result = sprintf("%u", $url);
- return base62($result);
- }
-
- echo urlShort("http://code.google.com/p/rfphp4zf");
來源于申明:以上內容一部分(包括照片、文本)來自互聯網,若有侵權行為,請立即與本網站聯絡(010-57218159)。
如沒特殊注明,文章均為酷站科技原創,轉載請注明來自http://www.siaeb.com/jianzhanzhishi/4358.html
聯系專業的商務顧問,制定方案,專業設計,一對一咨詢及其報價詳情
服務熱線
18911184380