0

需要你的帮助.. 我从Dynamically replace the "src" attributes of all tags (redux)看到了一个很好的答案,但我不知道如何从下面的代码中显示

$dom=new DOMDocument();
$dom->loadHTML($your_html);
$imgs = $dom->getElementsByTagName("img");
foreach($imgs as $img){
    $alt = $img->getAttribute('alt');
    if ($alt == 'pumpkin'){
        $src = 'http://myhost.com/cache/img001.gif'; 
    } else if ($alt== '*'){
        $src = 'http://myhost.com/cache/img002.gif';
    } else if ($alt== 'cool image'){
        $src = 'http://myhost.com/cache/img003.jpg';
    }
    $img->setAttribute( 'src' , $src );
}
4

1 回答 1

0

使用该DOMDocument::saveHTML()方法,在修改图像后,通过更改此行:

$img->setAttribute( 'src' , $src );

对此:

$img->setAttribute( 'src' , $src );
echo $dom->saveHTML( $img);
于 2012-06-26T02:41:56.057 回答