Skip to content

Instantly share code, notes, and snippets.

@andrearufo
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrearufo/8bb768ddbe49dbc7cec7 to your computer and use it in GitHub Desktop.
Save andrearufo/8bb768ddbe49dbc7cec7 to your computer and use it in GitHub Desktop.
Acronym function in PHP
<?php
// return the acronym of a name
function acronym($f){
$words = explode(" ", $f);
$acronym = "";
foreach ($words as $w){
$acronym .= $w[0];
}
return $acronym;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment