Get initials from a name

David Carr

1 min read - 5th Aug, 2014

Here is a simple way to collect the first letter of each word, This can be useful to get say a person initials from their name:

$words = explode(" ", 'Joe Bloggs');
$initials = null;
foreach ($words as $w) {
     $initials .= $w[0];
}
echo $initials; //JB

 

0 comments
Add a comment

Copyright © 2006 - 2024 DC Blog - All rights reserved.