php去除汉字的方法:首先创建一个PHP示例文件;然后通过正则表达式“preg_replace('/([\x80-\xff]*)/i','',$a);”替换中文字符为空字符即可。
推荐:《PHP视频教程》
PHP去除字符串中的中文字符
如题,删除一段字符串的中的中文,只要正则替换中文字符为空字符即可:
<?php header('Content-type:text/html;charset=utf-8'); function p($arr){ echo "<pre class="brush:php;toolbar:false">"; print_r($arr); echo ""; } $a = "河蟹)(社会afeowa#$%^!@@#zf吃饭fawgwea汉堡包agho_iawghowi我日)"; $result = preg_replace('/([\x80-\xff]*)/i','',$a); p($result); ?>
Atas ialah kandungan terperinci php如何去除汉字. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!