我正在寻找一种通过 php 操作 html 元素的解决方案。我正在阅读 http://www.php.net/manual/en/book.dom.php但我没有走多远。
我正在使用“iframe”元素(视频嵌入代码)并尝试在回显之前对其进行修改。我想在“src”属性中添加一些参数。
根据https://stackoverflow.com/a/2386291的回答,我 能够遍历元素属性。
$doc = new DOMDocument();
// $frame_array holds <iframe> tag as a string
$doc->loadHTML($frame_array['frame-1']);
$frame= $doc->getElementsByTagName('iframe')->item(0);
if ($frame->hasAttributes()) {
foreach ($frame->attributes as $attr) {
$name = $attr->nodeName;
$value = $attr->nodeValue;
echo "Attribute '$name' :: '$value'<br />";
}
}
我的问题是:
- 在不遍历元素的所有属性并检查当前元素是否是我要查找的元素的情况下,如何获取属性值?
- 如何设置元素的属性值?
- 我不想为此使用正则表达式,因为我希望它是未来的证明。如果“iframe”标签格式正确,我应该对此有任何问题吗?
iframe 示例:
<iframe src="http://player.vimeo.com/video/68567588?color=c9ff23" width="486"
height="273" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen>
</iframe>