David Carrdcblogdev.hashnode.devยทAug 5, 2014Get initials from a nameHere 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 $initial...480 readsAdd a thoughtful commentNo comments yetBe the first to start the conversation.