Heim  >  Artikel  >  Backend-Entwicklung  >  php正则替换有关问题

php正则替换有关问题

WBOY
WBOYOriginal
2016-06-13 12:07:241013Durchsuche

php正则替换问题

//1,如何去掉出现“微信号”及紧邻的标签对,如下代码中去掉这块内容:<div>这里有很多其他字符、表单等等....微信号...这里有很多其他字符、表单等等</div><br />		$content	= "0000<div>111<div>222<div>这里有很多其他字符、表单等等....微信号...这里有很多其他字符、表单等等</div>222</div>111</div>0000";<br />		<br />		//2,如何去掉出现qrcode_for_gh_2ff16e7c9789_258.jpg的图片<br />		$content	= '<img   style="max-width:90%" title="" alt="" src="http://www.aabbcc.com/upload/kdidd08983.jpg"><img   style="max-width:90%" title="" alt="" src="http://www.aabbcc.com/upload/qrcode_for_gh_2ff16e7c9789_258.jpg">';<br />		// $content	= preg_replace('/<img (.*?)src=["\']http[s]?:\/\/www\.aabbcc\.com\/upload\/qrcode_for_gh_2ff16e7c9789_258\.jpg["\'](.*?) alt="php正则替换有关问题" >/is', '', $content);<br />		var_dump( $content );

------解决思路----------------------
1、echo preg_replace('/<[^>]+>[^<>]*微信号[^<>]*<[^>]+>/u', '', $content);<br /><br />2、$content    = preg_replace('/<img ([^ alt="php正则替换有关问题" >]+)src=["\']http[s]?:\/\/www\.aabbcc\.com\/upload\/qrcode_for_gh_2ff16e7c9789_258\.jpg["\'](.*?)>/is', '', $content);

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn