in reply to What's the best way to get first character of the string?

$letter = substr($string, 0, 1);

It's faster (about four times) and easier to understand.