Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Shorten URL
#1
Credits and Source: http://www.roscripts.com/

Name: Shorten URL
Description: Shorten a long url with a function. Same feature thats on IPB and VB forum software.
Snippet:

PHP Code:
<?php
function shortenurl($url){
    
$length strlen($url);
    if(
$length 45){
        
$length $length 30;
        
$first substr($url0, -$length);
        
$last substr($url, -15);
        
$newurl $first."[ ... ]".$last;
        return 
$newurl;
    }else{
        return 
$url;
    }
}

$longurl "http://www.google.com/search?hl=en&client=firefox-a&channel=s&rls=org.mozilla%3Aen-US%3Aofficial&hs=BCR&q=metacafe&btnG=Search";
$shorturl shortenurl($longurl);
echo
"<a href=\"$longurl\">$shorturl</a>";
?>


Thankyou for reading. Be happy always Smile
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Check url if valid zone 0 455 11-08-2009, 08:54 AM
Last Post: zone

Forum Jump:


Users browsing this thread: 1 Guest(s)