php实现的短网址算法,理论上支持1,073,741,824个短网址。
每个网址用6个字符代替,(6^32) 最多可以拥有1,073,741,824个短网址。
当然,你还可以记录更详细的信息,如访问记录,创建时间等。
如果真不够用了,还可以删掉很久不用的。
<span>function</span> shorturl(<span>$input</span><span>) { </span><span>$base32</span> = <span>array</span><span> ( </span>'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5'<span> ); </span><span>$hex</span> = <span>md5</span>(<span>$input</span><span>); </span><span>$hexLen</span> = <span>strlen</span>(<span>$hex</span><span>); </span><span>$subHexLen</span> = <span>$hexLen</span> / 8<span>; </span><span>$output</span> = <span>array</span><span>(); </span><span>for</span> (<span>$i</span> = 0; <span>$i</span> < <span>$subHexLen</span>; <span>$i</span>++<span>) { </span><span>$subHex</span> = <span>substr</span> (<span>$hex</span>, <span>$i</span> * 8, 8<span>); </span><span>$int</span> = 0x3FFFFFFF & (1 * ('0x'.<span>$subHex</span><span>)); </span><span>$out</span> = ''<span>; </span><span>for</span> (<span>$j</span> = 0; <span>$j</span> < 6; <span>$j</span>++<span>) { </span><span>$val</span> = 0x0000001F & <span>$int</span><span>; </span><span>$out</span> .= <span>$base32</span>[<span>$val</span><span>]; </span><span>$int</span> = <span>$int</span> >> 5<span>; } </span><span>$output</span>[] = <span>$out</span><span>; } </span><span>return</span> <span>$output</span><span>; }</span>
测试代码:
<span>$input</span> = 'http://www.jbxue.com/1'<span>; </span><span>$output</span> = shorturl(<span>$input</span><span>); </span><span>echo</span> "Input : <span>$input</span>\n"<span>; </span><span>echo</span> "Output : {<span>$output</span>[0]}\n"<span>; </span><span>echo</span> " {<span>$output</span>[1]}\n"<span>; </span><span>echo</span> " {<span>$output</span>[2]}\n"<span>; </span><span>echo</span> " {<span>$output</span>[3]}\n"<span>; </span><span>echo</span> "\n"<span>; </span><span>$input</span> = 'http://www.jbxue.com/2'<span>; </span><span>$output</span> = shorturl(<span>$input</span><span>); </span><span>echo</span> "Input : <span>$input</span>\n"<span>; </span><span>echo</span> "Output : {<span>$output</span>[0]}\n"<span>; </span><span>echo</span> " {<span>$output</span>[1]}\n"<span>; </span><span>echo</span> " {<span>$output</span>[2]}\n"<span>; </span><span>echo</span> " {<span>$output</span>[3]}\n"<span>; </span><span>echo</span> "\n";
输出:
Input : http://www.jbxue.com/1
Output : h0xg4r
bdr3tw
osk2d3
4azfqa
Input : http://www.jbxue.com/2
Output : tm5kxb
ceoj2s
yw3dvl
nrmrxl
您可能感兴趣的文章:
- php生成短网址原理与实例
- php生成短网址示例代码
- php生成短网址的思路与实现
- php生成短网址 仿微博短网址生成代码
- php微博短网址算法 php生成短网址的实现代码
- php短网址超简单代码
- php生成短网址的简单代码
- php 生成短网址的一例代码
- php 短网址的实现代码

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.