自拍亚洲中文字幕一区二区,久久亚洲岛国观看,女人天堂在线日本,中文字幕欧美久久久

  • <strike id="iuy4q"><noscript id="iuy4q"></noscript></strike>
    <tbody id="iuy4q"><s id="iuy4q"></s></tbody>
  • 好學(xué)網(wǎng)移動版

    好學(xué)網(wǎng)首頁 > IT教育 > dedecms >

    dedecms遠程圖片如何本地化?

          對于http的遠程圖片本地化,dedecms能很好解決,但是碰到https的就無法本地化了,以下是解決辦法:

    找到 dede//inc/inc_archives_functions.php文件里面GetCurContent($body)這個函數(shù),里面

    preg_match_all(“/src=[\”|’|\s]{0,}(http:\/\/([^>]*)\.(gif|jpg|png|jpeg|bmp))/isU”,$body,$img_array);

    $img_array = array_unique($img_array[1]);

    這一段改為:

     

    preg_match_all(“/src=[\”|’|\s]{0,}(http:\/\/([^>]*)\.(gif|jpg|png|jpeg|bmp))/isU”,$body,$img_array);

    preg_match_all(“/src=[\”|’|\s]{0,}(https:\/\/([^>]*)\.(gif|jpg|png|jpeg|bmp))/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;
    }

    搞定,這樣發(fā)文章就可以快樂的把https的遠程圖片也本地化了。

    63.2K
      推薦閱讀
      網(wǎng)站首頁 網(wǎng)站地圖 返回頂部
      好學(xué)網(wǎng)移動版(2001-2035)好學(xué)網(wǎng)電腦版