Contact: aviboots(AT)netvision.net.il
40,764 questions
53,140 answers
573 users
$s = "PHP 9"; if (ctype_alpha($s[1])) echo "alpha" . "\n"; else echo "not alpha" . "\n"; if (ctype_alpha($s[4])) echo "alpha" . "\n"; else echo "not alpha" . "\n"; /* run: alpha not alpha */