PHP FAQ: Is there a PHP char_at or charAt function, like there is in other languages?
No, there isn't, but you can easily mimic a PHP charAt function like this:
$char = $my_string{4};
That's equivalent to having a charAt function like this:
$char = charAt($my_string, 4);
or this: