Name: Anonymous 2010-05-26 19:49
I am looking for a good programing forum so I can share some of my programs and get some constructive criticism on them. I would prefer a smaller one just so it will be easier to get to know people.
<?php
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;
}
}
?>
//USAGE
<?php
$longurl= "http://www.google.com/search?q=refactormycode&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:tr:official&client=firefox-a";
$shorturl = shorturl($longurl);
echo "<a href=\"$longurl\">$shorturl</a>";
?>