PHP Numeronym Generator

Numeronym generator More info on http://en.wikipedia.org/wiki/Numeronym

function numeronym($word){
    $number = strlen($word) - 2;
    $first = substr($word, 0, 1);
    $last = substr($word, strlen($word) - 1, 1);
    return $first.$number.$last;
}
©2009-2011 Webarto • web design & development • Tuzla // Sarajevo // Beograd