Contact: aviboots(AT)netvision.net.il
40,866 questions
53,271 answers
573 users
function removeNonASCII($input) { return preg_replace('/[^\x00-\x7F]/', '', $input); } $input = "©€ABC£µ¥xyz!® 123 こんにちは"; $filtered = removeNonASCII($input); echo "Filtered string: " . $filtered; /* run: Filtered string: ABCxyz! 123 */