Be careful with all of the ctype_* functions as they return true on the empty string, so the following code will execute forever.
(see also http://bugs.php.net/30945)
<?php
$string = "abc";
// infinite loop!
for($i = 4;ctype_alpha($string[$i]); $i++)
{
print $i;
}
?>
so always check the length of the string before doing something like that. i.e.:
while($i < strlen($string) && ctype_alpha($string[$i]))