Get alphabet

function getAlphabet(&$result, $lower=false){
    for ($c=$lower?97:65; $c<=$lower?122:90; $c++){
        if (is_array($result)) $result[] = chr($c);
        else $result .= chr($c);
    }
}
  • Digg
  • del.icio.us
  • Facebook
  • Technorati
  • Twitthis
  • FriendFeed

POST A COMMENT

  • You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>