0

我正在尝试找到一种方法来定位页面上的所有图像并根据需要修改它们的来源。这是我到目前为止所拥有的:

add_filter('the_content','wpdu_image_replace');
function wpdu_image_replace($content) {
    $upload_dir = wp_upload_dir();
    $pattern = '/<img.*src="(.*?)".*?>/';
    $replacement = wpdu_base64_encode_image($upload_dir['path'].'/'.\1);
    return preg_replace( $pattern, $replacement , $content );
}

我有三个问题:

  1. 我使用服务器上的相对路径开始'src'标签 - 但没有检查是否:
    1. 该图像确实存在于服务器上
    2. 如果图像有,URL 是否是相对的
  2. 我的$replacement变量是错误的(我不确定如何输出仅在 src 标记中的内容)
  3. 我不想<img>在替换中声明标签,因为那样我会丢失它周围的所有其他东西(如类、ID 等)。

有谁知道如何获取图像的来源并以我描述的方式替换它?我已经将Simple HTML DOM视为替代方案——但得到的性能结果很糟糕。任何帮助将不胜感激。谢谢!

4

1 回答 1

0

1)检查图像是否确实存在于服务器上

preg_match_all("!(?<=src\=\").+(?=\"(\s|\/\>))!",$html, $match, PREG_SET_ORDER);

$files = $match;
foreach ($files as $file) {
    if (file_exists($file)) {
       echo "The file $file exists";
       //if image exists you can replace it like: 
       $html = str_replace($file, 'NewImagePath', $html);//$file is the found image source
    } else {
       echo "The file $file does not exist";
    }
}

另一种替换图像的方法:

  $html = '<img id="brandLogo" src="chrome://branding/content/about-logo.png" alt=""/>'
  $html = preg_replace('!(?<=src\=\").+(?=\"(\s|\/\>))!', 'newlogo.png',$html );

此代码找到源代码chrome://branding/content/about-logo.png并将其替换为新代码newlogo.png

2)要检查路径是相对的还是绝对的,你可以使用php函数parse_url

于 2012-07-02T14:52:54.047 回答