在xml文件的特定点插入xml

时间:2011-09-06 20:47:49

标签: php domdocument

我想在我的xml文件中插入以下行:

<?xml-stylesheet type="text/xsl" href="http://example.com/livesearch.xsl"?>

紧接着:

<?xml version="1.0" encoding="UTF-8" ?>

在我的xml文件中。

目前我使用这个(糟糕的)方法:

$G['xml'] = str_replace('<?xml version="1.0" encoding="UTF-8" ?>', '<?xml version="1.0" encoding="UTF-8" ?><?xml-stylesheet type="text/xsl" href="http://example.com/livesearch.xsl"?>', $G['xml']);

在php中使用DomDocument执行此操作的正确方法是什么?

由于

1 个答案:

答案 0 :(得分:5)

您要插入的行称为processing instruction。您可以使用DOM添加它:

$dom = new DOMDocument();
$dom->loadXml('<?xml version="1.0" encoding="UTF-8" ?><root/>');

$dom->insertBefore(
    $dom->createProcessingInstruction(
        'xml-stylesheet',
        'type="text/xsl" href="http://example.com/livesearch.xsl"'
    ),
    $dom->documentElement
);
echo $dom->saveXml();

输出:

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://example.com/livesearch.xsl"?>
<root/>

在旁注中,使用str_replace可能会有误,但如果有效......它就可以了。