Count letters in a string! PHP

Is there a way to count the number of letters in a string?
With count(); I would have to split the string into an array somehow but I’m kinda hoping there’s another way!

strlen(string)

thx :slight_smile: