I am looking for a PHP function that creates a short hash out of a string or a file, similar to those URL-shortening websites like tinyurl.com
The hash should not be longer than 8 characters.
|
I am looking for a PHP function that creates a short hash out of a string or a file, similar to those URL-shortening websites like tinyurl.com The hash should not be longer than 8 characters. |
||||
|
|
|
URL shortening services rather use a auto incremented integer value (like a supplementary database ID) and encode that with Base64 or other encodings to have more information per character (64 instead of just 10 like digits). |
|||
|
|
|
TinyURL doesn't hash anything, it uses Base 36 integers (or even base 62, using lower and uppercase letters) to indicate which record to visit. Base 36 to Integer:
Integer to Base 36:
So then, instead of redirecting to a route like Don't hash, use other bases for this kind of thing. (It's faster and can be made collision-proof.) |
|||||||||||
|
|
I wrote a tiny lib to generate obfuscated hashes from integers. http://blog.kevburnsjr.com/php-unique-hash
m8z2p 8hy5e uqx83 gzwas 38vdh phug6 bqtiv xzslk k8ro9 6hqqy |
|||||||||||
|
|
Shortest hash is 32 character length, how ever you can use first 8 characters of md5 hash
Update: here is another class found here written by Travell Perkins which takes record number and create short hash for it. 14 digits number produce 8 digit string. By the date you reach this number you become more popular than tinyurl ;)
here is example how to use it:
|
|||||||||
|