php method to remove Chinese characters: first create a PHP sample file; then use the regular expression "preg_replace('/([\x80-\xff]*)/i','',$a); "Just replace the Chinese characters with empty characters.
Recommended: "PHP Video Tutorial"
PHP removes Chinese characters from strings
As the title says, to delete the Chinese characters in a string, just replace the Chinese characters with empty characters using regular rules:
"; print_r($arr); echo ""; } $a = " 河蟹)(社会afeowa#$%^!@@#zf吃饭fawgwea汉堡包agho_iawghowi我日)"; $result = preg_replace('/([\x80-\xff]*)/i','',$a); p($result); ?>
The above is the detailed content of How to remove Chinese characters in php. For more information, please follow other related articles on the PHP Chinese website!