php正则怎么去掉href?
问题描述:
php 正则表达式 去除href及数据
要把这段8000-0000
替换为
链接不唯一 就是去掉href=“xxxxx”
要怎么写??
实现方法:
8000-0000'; preg_match('/href\s*=\s*(?:"([^"]*)"|\'([^\']*)\'|([^"\'>\s] ))/is', $string,$matches); //print_r($matches); echo str_replace($matches[0], '', $string); ?>