PHP DomDocument alter conditional comments

半世苍凉 提交于 2019-12-01 22:34:20

问题


I have this html file with a conditional comment.

<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <link rel="stylesheet" type="text/css" href="css/style.css">
        <link rel="stylesheet" type="text/css" href="css/elements.css">
        <title>Page</title>
        <!--[if lte IE 6]>
        <link rel="stylesheet" type="text/css" href="css/ie6.css" />
        <![endif]-->
    </head>
etc...

I am using the DomDocument library to modify the <link> attributes. Is there any way of getting DomDocument to read and modify the <link> element in the conditional comments.


回答1:


foreach($dom->getElementsByTagName('head') as $head) {
    foreach($head->childNodes as $node) {
        if($node instanceof DOMComment) {
            $node->replaceData(16,60,'test');
        }
    }
}

This code works, I just let you search how to get 'offset' and 'count' value for the replaceData method !



来源:https://stackoverflow.com/questions/3879108/php-domdocument-alter-conditional-comments

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!