Any ideas how can I get rid of 0xfffe character inside the string via PHP functions?
is something like that OK ? preg_replace('/[\x{fffe}-\x{ffff}]/u', '', $string) ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
OK, just to let you know
preg_replace('/[\x{fffe}-\x{ffff}]/u', '', $string)did the trick.