Skip to content

Instantly share code, notes, and snippets.

@angch
Last active August 29, 2015 14:01
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 angch/85f2cd41db53f4b0cee9 to your computer and use it in GitHub Desktop.
Save angch/85f2cd41db53f4b0cee9 to your computer and use it in GitHub Desktop.
<?php
// https://forum.lowyat.net/topic/3230448/
$name = "Kajuta Re'lian";
if (preg_match_all("/\b(\w)/", str_replace("'", "", $name), $initials)) {
$initials = strtoupper(implode(". ", $initials[0]).".");
print $initials;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment