最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

php正则替换有关问题

来源:http://erdangjiade.com/topic/79490.html 你好,世界。 2017-10-04 21:03浏览(2)

php正则替换问题
//1,如何去掉出现“微信号”及紧邻的标签对,如下代码中去掉这块内容:<p>这里有很多其他字符、表单等等....微信号...这里有很多其他字符、表单等等</p>
$content = "0000<p>111<p>222<p>这里有很多其他字符、表单等等....微信号...这里有很多其他字符、表单等等</p>222</p>111</p>0000";

//2,如何去掉出现qrcode_for_gh_2ff16e7c9789_258.jpg的图片
$content = '<img style="border: 0px;" title="" alt="" src="http://www.aabbcc.com/upload/kdidd08983.jpg"><img style="border: 0px;" title="" alt="" src="http://www.aabbcc.com/upload/qrcode_for_gh_2ff16e7c9789_258.jpg">';
// $content = preg_replace('/<img(.*?)src=["']http[s]?://www.aabbcc.com/upload/qrcode_for_gh_2ff16e7c9789_258.jpg["'](.*?)>/is', '', $content);
var_dump( $content );

------解决思路----------------------
1、echo preg_replace('/<[^>]+>[^<>]*微信号[^<>]*<[^>]+>/u', '', $content);

2、$content = preg_replace('/<img([^>]+)src=["']http[s]?://www.aabbcc.com/upload/qrcode_for_gh_2ff16e7c9789_258.jpg["'](.*?)>/is', '', $content);

评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2