zl程序教程

您现在的位置是:首页 >  后端

当前栏目

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

PHPHTML代码 函数 图片 标签 去除 img
2023-09-14 08:57:34 时间

  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;
}