Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Programing Forums

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.

Name: Anonymous 2010-05-26 20:38

http://refactormycode.com

home to such gems as "A code block for php coders to get urls shorter. I hope you like it"


<?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>";


?>

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List