Keys →
Functions ↓
function is_special ( $ch ) {#-k string type is#- only applies to a single character $c = ord ( $ch ); if ($c <= 47) return true; # 48: 0-9 if (($c >= 58) and ($c <= 64)) return true; # 65: A-Z if (($c >= 91) and ($c <= 96)) return true; # 92: a-z if ($c >= 123) return true; return false; }?>