php 删除一段字符串的中的中文
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 删除一段字符串的中的中文相关的知识,希望对你有一定的参考价值。
<?php header(‘Content-type:text/html;charset=utf-8‘); function p($arr){ echo "<pre>"; print_r($arr); echo "</pre>"; } #去掉字符串中的中文 $a = "<a>河蟹)(社会afeowa#$%^[email protected]@#zf吃饭fawgwea汉堡包agho_iawghowi我日)</a>"; $result = preg_replace(‘/([\x80-\xff]*)/i‘,‘‘,$a); p($result); ?>
以上是关于php 删除一段字符串的中的中文的主要内容,如果未能解决你的问题,请参考以下文章