使用DOMDocument类更改iframe中的样式表属性

时间:2016-05-01 14:21:08

标签: php html

我正在使用DOMDocument类,以便在加载页面时更改link标记属性。 我想要操作的标记是iframe块内部,因此我的代码在特定情况下不起作用。 这是代码:

$page_content = file_get_contents($page_link);

$dom = new DOMDocument();

$dom->loadHtml($page_content);


$links = $dom->getElementsByTagName('link');

foreach( $links as $k => $link ){
    if( $link->getAttribute('rel') === 'stylesheet' ){
        $link->setAttribute('rel', 'test'); //just fot testing
    }
}

$newHtml = $dom->saveHtml();


echo $newHtml;

但只有主要标记会受到影响,而iframe块中的<link>则不会:

<head>
       <link rel="test" href="style.css"/>
</head>
<body>
.
.
.
.
    <iframe>
        <head>
             <link rel="stylesheet" href="style.css"/><!--"rel" stays the same-->
        </head>
    </iframe>
.
.
.
</body>
<footer>
</footer>

非常感谢你的帮助!

0 个答案:

没有答案