dedecms织梦远程图片本地化https链接图片无法本地化怎么解决

dedecms织梦远程图片本地化https链接图片无法本地化怎么解决,第1张

概述最近有朋友遇到发布文章时候文章里面带https的站外图片无法本地化,以下是解决办法: 找到 dede//inc/inc_archives_functions.php文件里面GetCurContent($body)这个函数,里面 preg_match_all(/src=[||s]{0,}(http://([^]*).(gif|jpg|png))/isU,$body,$img_ar 最近有朋友遇到发布文章时候文章里面带https的站外图片无法本地化,以下是解决办法:
找到  dede//inc/inc_archives_functions.PHP文件里面GetCurContent($body)这个函数,里面
preg_match_all("/src=["|'|s]{0,}(http://([^>]*).(gif|jpg|png))/isU",$body,$img_array);
$img_array = array_unique($img_array[1]);
这一段改为:
preg_match_all("/src=["|'|s]{0,$img_array);preg_match_all("/src=["|'|s]{0,}(https://([^>]*).(gif|jpg|png))/isU",$img_array_https);$img_array = array_unique($img_array[1]);$img_array_https = array_unique($img_array_https[1]);$img_array=array_merge_recursive($img_array,$img_array_https);


第二步:
if(!preg_match("#^http://#i",$value)){continue;}

这一段改为:
查看源码   打印代码帮助  
if(!preg_match("#^http://#i",$value)&&!preg_match("#^https://#i",$value)){continue;}

搞定,这样发文章就可以把https的远程图片也本地化了 总结

以上是内存溢出为你收集整理的dedecms织梦远程图片本地化https链接图片无法本地化怎么解决全部内容,希望文章能够帮你解决dedecms织梦远程图片本地化https链接图片无法本地化怎么解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/1063342.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存