分享一个php 短网址的代码,现在很流行的哦,有需要的朋友,不妨作个参考吧。
php 短网址(URL)代码一例,如下: <?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; } } ?> php 短网址调用示例,如下: <?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"; ?> |