Code generated for a php short URL (like Weibo short URL)-PHP source code

Source: Internet
Author: User
This article mainly introduces the code for generating a php short URL (similar to Weibo short URL ), for more information, see the next article. This article mainly introduces the code generated for a php short URL (similar to a Weibo short URL). For more information, see

Share the code generated for a php short URL.

The code is as follows:






UrlShort





Header ("Content-Type: text/html; charset = UTF-8 ");
Function base62 ($ x ){
$ Show = '';
While ($ x> 0 ){
$ S = $ x % 62;
If ($ s> 35 ){
$ S = chr ($ s + 61 );
} Else if ($ s> 5 & $ S <= 35 ){
$ S = chr ($ s + 55 );
} Www.jb51.net
$ Show. = $ s;
$ X = floor ($ x/62 );
}
Return $ show;
}
// Generate a short URL
Function url_short ($ url ){
$ Url = crc32 ($ url );
$ Result = sprintf ("% u", $ url );
Return base62 ($ result );
}

Echo ("generate a short url:". url_short ($ _ POST ['URL']). "");

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.