function replaceMipImages($content)
{
preg_match_all('/<img (.*?)\>/', $content, $images);
if(!is_null($images)) {
foreach($images[1] as $index => $value){
$mip_img = str_replace('<img', '<mip-img', $images[0][$index]);
$mip_img = str_replace('>', '></mip-img>', $mip_img);
//以下代碼可根據需要修改/刪除
$mip_img = preg_replace('/(width|height)="\d*"\s/', '', $mip_img );//移除圖片width|height
$mip_img = preg_replace('/ style=\".*?\"/', '',$mip_img);//移除圖片style
$mip_img = preg_replace('/ class=\".*?\"/', '',$mip_img);//移除圖片class
//以上代碼可根據需要修改/刪除
$content = str_replace($images[0][$index], $mip_img, $content);
}
}
return $content;
}