短い URL は、新浪微博アプリケーションを開発していたときによく使われていましたが、最近これに遭遇しました。実際、短い URL を見つけるのは非常に簡単です。次にphpを使って短縮URLを生成する実装方法を記録していきます。
phpで短いドメイン名を生成する関数
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
パブリック関数 createRandCode($string) { $コード = ''; $hex_code = '1qaz2wsx3edc4rfv5t-gb6yhn7ujm8ik9ol0p_'; $now = マイクロタイム(true) * 10000; $strlen = strlen($hex_code);
$hash_code = ハッシュ('sha256', $string);
// これはエンコーディングのランダムな長さを定義します。長さはステップによって異なります $step = rand(8, 16); $count = ceil(strlen($hash_code) / $step);
for($i = 0; $i $start = $i * $step; $hex_num = substr($hash_code, $start, $step); $num = 0x3fffffff & (1 * '0x' . $hex_num); $n = $num % $strlen; $code .= $hex_code[$n]; }
$code を返す; } |
上記は、この記事で共有したコードの全内容です。気に入っていただければ幸いです。