0
     <Parent>
  <Children idontknowthis='thisisnotmyquestion'>
   <x>1</x>
   <x>2</x>
   <x>3</x>
   <x>4</x>
  </Children>
 </Parent>

下面是我正在使用的 .xml 文件示例。我的脚本需要自己建立“id”(很明显我已经可以得到 bk109)......

   <book id="bk109">
      <author>Kress, Peter</author>
      <title>Paradox Lost</title>
      <genre>Science Fiction</genre>
      <price>6.95</price>
      <publish_date>2000-11-02</publish_date>
      <description>After an inadvertant trip through a Heisenberg
      Uncertainty Device, James Salway discovers the problems 
      of being quantum.</description>
   </book>

用于 PHP 中的 XML 导入脚本,它将导入许多不同的 XML 文件。如何获取属性名称?(即“身份证”)

4

1 回答 1

1

使用 SimpleXML 的attributes属性。

http://php.net/manual/en/simplexmlelement.attributes.php

于 2013-07-22T22:31:58.603 回答