最近有朋友遇到发布文章时候文章里面带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,}(http://([^>]*).(gif|jpg|png))/isU",$body,$img_array);

preg_match_all("/src=["|'|s]{0,}(https://([^>]*).(gif|jpg|png))/isU",$body,$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的远程图片也本地化了
THE END

本站部分文章搜集整理于互联网或者网友提供,如有侵权请联系站长

如若转载,请注明出处:https://www.htmlbk.com/dedecms/348.html

温馨提示:该文档最后一次修改时间为2019-12-03 14:10:49,请注意相关的内容是否还可用!