首页 > Web开发 > 详细

php去除html代码中img图片标签宽高函数

时间:2020-02-03 18:17:57      阅读:108      评论:0      收藏:0      [点我收藏+]

  php去除html代码中img图片标签宽高函数,应对采集数据出现图片大小限制问题。

 

  

function content_strip($content){
	$content = preg_replace(‘/<img[^>]*src=[\‘"]?([^>\‘"\s]*)[\‘"]?[^>]*>/ie‘,"wap_img(‘$1‘)",$content);
	return $content;
}
function wap_img($url){
	$img=‘<img src="‘.$url.‘">‘;
	return $img;
}

  

php去除html代码中img图片标签宽高函数

原文:https://www.cnblogs.com/68xi/p/12256379.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!