將原網址做crc32校驗,得到校驗碼,使用sprintf將校驗碼轉為無符號數字,詳細步驟請看本文
php 生成短網址 原理: 1.將原網址做crc32校驗,得到校驗碼。 2.使用sprintf('%u') 將校驗碼轉為無符號數字。 3.對無符號數字進行求余62操作(大小寫字母+數字等於62位),得到余數後映射到62個字符中,將映射後的字符保存。(例如余數是10,則映射的字符是A,0-9對應0-9,10-35對應A-Z,35-62對應a-z) 4.循環操作,直到數值為0。 5.將所有映射後的字符拼接,就是短網址後的code。 代碼如下: 代碼如下: /** 生成短網址 * @param String $url 原網址 * @return String */ function dwz($url){ $code = sprintf('%u', crc32($url)); $surl = ''; while($code){ $mod = $code % 62; if($mod>9 && $mod<=35){ $mod = chr($mod + 55); }elseif($mod>35){ $mod = chr($mod + 61); } $surl .= $mod; $code = floor($code/62); } return $surl; }