PHP DOM Document:如何在xml中将节点“default:link”替换或更改为“xhtml:link”?

时间:2017-03-21 12:20:21

标签: php xml dom

我尝试使用以下代码从标记“xhtml:link”中删除属性“xmlns:xhtml”:

源代码:

    $doc = new DOMDocument('1.0', 'utf-8');
    $url = 'android-app://com.domain.name';
    $element = $doc->createElementNS($url,'xhtml:link');

    $attribute = $doc->childNodes->item(0);

    //echo '<br>tag: '.$doc->getElementsByTagName("xhtml:link")[0];

    $element->setAttribute('href', $url);
    $element->setAttribute('rel', 'alternate');

    //echo '<pre>';print_r($element);echo '</pre>';


    $element->hasAttributeNS($url, 'xhtml');
    $element->removeAttributeNS($url, 'xhtml');

    $doc->appendChild($element);
    echo $doc->saveXML();

输出:

    <?xml version="1.0" encoding="utf-8"?>
    <default:link href="android-app://com.domain.name" rel="alternate"/>

但是,我期待输出看起来像:

    <?xml version="1.0" encoding="utf-8"?>
    <xhtml:link href="android-app://com.domain.name" rel="alternate"/>

请帮帮我,我必须做什么?我在这里取代标签......

谢谢!

1 个答案:

答案 0 :(得分:0)

尝试使用createElement功能代替createElementNS

$doc = new DOMDocument('1.0', 'utf-8');
$url = 'android-app://com.domain.name';
$element = $doc->createElement('xhtml:link');

$attribute = $doc->childNodes->item(0);

$element->setAttribute('href', $url);
$element->setAttribute('rel', 'alternate');

$doc->appendChild($element);
echo $doc->saveXML();

<强>输出:

<?xml version="1.0" encoding="utf-8"?>
<xhtml:link href="android-app://com.domain.name" rel="alternate"/>