读取 SimpleXML 中带有连字符的名称的 XML 节点
SimpleXML 是一个用于解析 XML 文档的 PHP 库,在读取带有连字符的节点时可能会遇到困难名称。例如,考虑下面的 XML:
<?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"> <office:meta> <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>
尝试使用 SimpleXML 的 Children() 方法读取 office:document-meta 节点会导致错误“使用未定义的常量元 - 假设为‘元’”。这是因为 SimpleXML 将连字符解释为减法运算符。
解决方案
要解决此问题,请使用大括号而不是连字符:
$officeXML->{'document-meta'}
此语法允许您访问文档元节点。
访问连字符属性
虽然连字符元素名称需要大括号语法,但可以使用常规数组表示法来访问连字符属性:
$root = new SimpleXMLElement($xml); echo $root->{'hyphenated-element'}['hyphenated-attribute']; // prints "bar"
请参阅 SimpleXML 基础文档以获取其他示例。
以上是如何使用 SimpleXML 访问带连字符的 XML 节点名称?的详细内容。更多信息请关注PHP中文网其他相关文章!