开发者

PHP DomDocument xml parser

I have a php page that parses some xml text. That text comes from user input in a html textfield.

Whenever there is any whitespace at all between nodes, the Domdocument xml parser fails to parse the document correctly. Essentially it will recognize the first node, but any nested nodes it cannot find.

Removing the whitespace, it works no problem.

$xmldoc = new DOMDocument();
$xmldoc->loadXML($rawxml);

$top = $xmldoc->documentElement;
if(!$top) {echo "error: xml config is empty"; exit(-1);}
if($top->nodeName != "config") die("error: expect config tag as first element");


$nameNode = $top->childNodes->item(0);

//Fails her开发者_Go百科e
if($nameNode->nodeName != "name") die("error: expect name tag following config tag");

Works

<config><name>sdf2</name></config>

Does not work

<config>   <name>sdf2</name></config>


This is expected behavior. When you load a formatted XML document with DOM any whitespace, e.g. indenting, linebreaks and node values will be part of the DOM as DOMText instances by default. You can disable this by doing

$xmldoc->preserveWhiteSpace = false;

before loading the XML which will then discard any formatting whitespace. For a more detailed answer see

  • Printing content of a XML file using XML DOM
  • DOMDocument in php
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜