PHP DOM 用新元素替换元素
我有一个带有加载HTML标记的DOM对象。我正在尝试替换所有如下所示的嵌入标记:
<embed allowfullscreen="true" height="200" src="path/to/video/1.flv" width="320"></embed>
使用如下标记:
<a
href="path/to/video/1.flv"
style="display:block;width:320px;height:200px;"
id="player">
</a>
我在弄清楚这一点时遇到了麻烦,我不想为此使用正则表达式。你能帮帮我吗?
编辑:
这是我到目前为止所拥有的:
// DOM initialized above, not important
foreach ($dom->getElementsByTagName('embed') as $e) {
$path = $e->getAttribute('src');
$width = $e->getAttribute('width') . 'px';
$height = $e->getAttribute('height') . 'px';
$a = $dom->createElement('a', '');
$a->setAttribute('href', $path);
$a->setAttribute('style', "display:block;width:$width;height:$height;");
$a->setAttribute('id', 'player');
$dom->replaceChild($e, $a); // this line doesn't work
}