使用 SimpleXML 读取带有连字符名称的 XML 节点可能很棘手。本机 SimpleXML 库期望节点专门以命名空间的冒号为前缀(并转换为全大写字母),并将其视为当前加载的 XML 根元素的子元素。
例如,要访问 document-meta 节点:
<?xml version="1.0" encoding="UTF-8"?> <gnm:Workbook xmlns:gnm="http://www.gnumeric.org/v10.dtd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.gnumeric.org/v9.xsd"> <office:document-meta xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" office:version="1.1"> <dc:creator>Mark Baker</dc:creator> <dc:date>2010-09-01T22:49:33Z</dc:date> <meta:creation-date>2010-09-01T22:48:39Z</meta:creation-date> <meta:editing-cycles>4</meta:editing-cycles> <meta:editing-duration>PT00H04M20S</meta:editing-duration> <meta:generator>OpenOffice.org/3.1$Win32 OpenOffice.org_project/310m11$Build-9399</meta:generator> </office:meta> </office:document-meta> </gnm:Workbook>
$officeXML = $xml->children($namespacesMeta['office'])->{’document-meta’};
[SimpleXML 基础知识](https://www.php.net/manual/en/simplexml.intro-example.php)
以上是如何使用 SimpleXML 访问连字符的 XML 节点?的详细内容。更多信息请关注PHP中文网其他相关文章!