2014-05-07 php中使用dom对xml进行操作时, getElementById 不能使用的问题

这个问题, 还是用了很长得时间才解决的, 主要是在xml中要有文档定义, 将id定义成ID类型, 你的xml才能如下面这样写。 filename:testing.xml <!DOCTYPE book [ <!ELEMENT book (title, author)> <!ELEMENT title (#PCDATA)> <!ELEMENT author (#PCDATA)> <!ATTLIST title id ID IMPLIED> <!ATTLIST author id ID IMPLIED> ]> this is a title the author of the book 然后你才能在php程序中这样应用。 load(“testing.xml”); $titleNode = $doc->getElementById(“title”); echo “the title of the book is “ . $titleNode->nodeValue; ?> 先面, 我就像测试一下, 用dom创建得xml会不会要求这样呢? 我想会的。


2014-05-07 php中使用dom对xml进行操作时, getElementById 不能使用的问题
https://www.supermew.top/2014/05/07/php中使用dom对xml进行操作时,-getelementbyid-不能使用的问题/
作者
八月
发布于
2014年5月7日
许可协议