我正在尝试用带有 id 属性的新图像标签替换现有的图像标签。
我有 DB 像返回的 htmlstring
<div>
<p>random p</p>
<img src='a.jpb'/>
</div>
<span>random span</span>
<img src='b.jpb'/>
more...
我想用 id 属性替换图像的“某些”,例如:
更换
<img src='a.jpb'/>
到
<img id='123' src='a.jpb'/>
我使用 domdocument
$doc = new DOMDocument();
$doc->loadHTML($html);
$imageTags = $doc->getElementsByTagName('img');
$imgSource=$this->DBimgSource;
$id=$this->DBID;
foreach($imageTags as $tag) {
//getting all the images tags from $html string
$source=$tag->getAttribute('src');
if(!empty($imgSource) && !empty($source)){
if(in_array($source, $imgSource)){
$id=array_search($source,$imgSource);
$imgID=$id;
$tag->setAttribute('id',$imgID);
$newImageTag=$doc->saveXML($tag);
//I am not sure how to replace existing image tags within $html with the $newImageTag
}
}
}
任何想法如何做到这一点?反正我也想不出来。谢谢您的帮助!