织梦DedeCMS>正文
img标签替换为mip-img标签的方法
2018-09-10 10:45function 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;
}
{
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;
}
本文链接:https://www.0937.biz/post-340.html
猜你喜欢
- 2018-09-10 织梦安装后提示Function ereg_replace() is deprecated的解决方法
- 2018-09-10 dede数据库批量替换栏目页和内容页标题、关键字、描述
- 2018-09-10 dedecms修改栏目信息报错“保存当前栏目更改时失败,请检查你的输入资料是否存在问题!”
- 2018-09-10 DEDECMS 5.6转5.7数据库升级SQL命令
- 2018-09-10 dedecms指定栏目内关键词替换SQL
- 2018-09-10 DedeCMSV57数据库结构文档
- 2018-09-10 织梦title字数限制的两种方法
- 2018-09-10 dedecms管理员密码重置工具radminpass.php
- 2018-09-10 织梦漏洞文件
- 图文推荐
-
- 热门标签