短網址流行的已經有一段時間了,以前做新浪微博應用的時候就有接觸,但沒有搞清楚,最近再次接觸到這個東東,仔細研究了下,發現短網址其實也挺容易的。下面就將使用php產生短網址的實作方法來做記錄。
php產生短域名函數
public function createRandCode($string) { $code = ''; $hex_code = '1qaz2wsx3edc4rfv5t-gb6yhn7ujm8ik9ol0p_'; $now = microtime(true) * 10000; $strlen = strlen($hex_code); $hash_code = hash('sha256', $string); // 这里会为编码定义一个随机的长度,长度取决于step $step = rand(8, 16); $count = ceil(strlen($hash_code) / $step); for($i = 0; $i < $count; $i++) { $start = $i * $step; $hex_num = substr($hash_code, $start, $step); $num = 0x3fffffff & (1 * '0x' . $hex_num); $n = $num % $strlen; $code .= $hex_code[$n]; } return $code; }
總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。
相關推薦:
#以上是php產生短域名函數的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!