If I have a PHP string, how can I determine if it contains at least one non-ASCII character or not, in an efficient way? And by non-ASCII character, I mean any character tha
The function ctype_print returns true iff all characters fall into the ASCII range 32-126 (PHP unit test).