Home > Backend Development > PHP Tutorial > PHP short URL implementation code

PHP short URL implementation code

WBOY
Release: 2016-07-25 08:56:54
Original
985 people have browsed it
Share a PHP short URL code, which is very popular now. Friends in need may wish to use it as a reference.

An example of php short URL (URL) code, as follows:

<?php
/**
* php 短网址 函数
* by bbs.it-home.org
*/
function shorturl($url){
    $length = strlen($url);
    if($length > 45){
        $length = $length - 30;
        $first = substr($url, 0, -$length);
        $last = substr($url, -15);
        $new = $first."[ ... ]".$last;
        return $new;
    }else{
        return $url;
    }
}
?>
Copy after login

php short URL call example, as follows:

<?php
$longurl= "http://www.google.com/search?q=symfony+project&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:tr:official&client=firefox-a";
$shorturl = shorturl($longurl);
echo "$shorturl";
?>
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template