发布网友 发布时间:2022-04-06 02:49
共2个回答
懂视网 时间:2022-04-06 07:11
php去除汉字的方法:首先创建一个PHP示例文件;然后通过正则表达式“preg_replace('/([x80-xff]*)/i','',$a);”替换中文字符为空字符即可。
推荐:《PHP视频教程》
PHP去除字符串中的中文字符
如题,删除一段字符串的中的中文,只要正则替换中文字符为空字符即可:
<?php header('Content-type:text/html;charset=utf-8'); function p($arr){ echo "<pre>"; print_r($arr); echo "</pre>"; } $a = "<a>河蟹)(社会afeowa#$%^!@@#zf吃饭fawgwea汉堡包agho_iawghowi我日)</a>"; $result = preg_replace('/([x80-xff]*)/i','',$a); p($result); ?>
热心网友 时间:2022-04-06 04:19
preg_match('\(<a\shref="[0-9 a-z A-Z \. \/]+">.+</a>)<sup .+>.+</sup>(<span>.+</span>)\',$str,$arr);