$result = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $string);
myprompt> php -a Interactive shell php > $string = "‘Hello,’ she said."; php > $result = preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $string); php > echo $result; Hello, she said.