preg_replace语法(img src)

时间:2012-06-15 14:44:45

标签: php preg-replace

我正在尝试找到一种方法来查找页面上的所有图像,并根据需要修改其源代码。以下是我到目前为止的情况:

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等)。
  4. 有谁知道如何抓住图像的来源并以我所描述的方式取代它?我看过Simple HTML DOM作为替代选择 - 但是表现得非常糟糕。任何帮助将不胜感激。谢谢!

1 个答案:

答案 0 :(得分: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