使用PHP提取XML信息


Extracting XML info using PHP

我有一个格式奇怪的XML文件,我想提取<text xml:space="preserve" bytes="1099">部分并将该信息转换为自己的数组。

我假设我必须找到|分隔符并在该点进行分割,但不太确定如何做到这一点。

  <page>
    <title>Martial Ares</title>
    <ns>0</ns>
    <id>23026</id>
      <sha1>7imznp2a51dh3kslf5gtqnkpkidlvom</sha1>
    <revision>
      <id>79960</id>
      <timestamp>2014-02-25T07:24:27Z</timestamp>
      <contributor>
        <username>JScathach</username>
        <id>8024930</id>
      </contributor>
        <text xml:space="preserve" bytes="1017">{{Infobox card (2)
            |card name=[Martial] Ares
            |character name=Ares
            |release_date=May 1 2013
            |image 1=MartialAres5.jpg
            |rarity 1=Super Special Rare
            |pwr req 1=28
            |sale price 1=94200
            |max card lv 1=60
            |max mastery lv 1=40
            |quote 1=Ares prefers weapons that were used during the age of Greek myth: sword, axe, and spear.  But he can use any weapon expertly, and turn most ordinary objects into lethal weapons.
            |base atk 1=2440
            |base def 1=2650
            |max atk 1=7015
            |max def 1=7613
            |mastery bonus atk 1=915
            |mastery bonus def 1=993
            |image 2=MartialAres6.jpg
            |rarity 2=Ultimate Rare
            |sale price 2=188400
            |max mastery lv 2=200
            |quote 2=Next time I see Hercules, We're going to have a steel conversation. It's about time for him to answer for massacring my Stymphalian Birds.
            |max atk 2=9822
            |max def 2=10660
            |mastery bonus atk 2=1098
            |mastery bonus def 2=1192
            |alignment=Bruiser
            |ability=Warhawk
            |gender=Male
            |usage=Average
            |faction=Super Hero
            |effect=Significantly harden DEF of your Bruisers.
            |centretrait=None
            }}
            __NOWYSIWYG__
      </text>
    </revision>
  </page>

你可以这样获取文本:

$xml = simplexml_load_string($string);
$text = $xml->revision->text;

我假设我必须找到|分隔符并在该点进行分割,但不太确定如何做到这一点。

PHP的基于libxml的库(这包括SimpleXMLElementDOMDocument)与他们的默认选项保留空格在文本元素的问题,所以在这方面你应该遇到小问题。

对于编码为text元素text-value的格式,这是Mediawiki语法,在它的最开始的部分是Infobox Template

{{Infobox
 | title = Top level title
 | data1 = {{Infobox | decat = yes | child = yes
    | title = First subsection
    | label1= Label 1.1
    | data1 = Data 1.1
   }}
 | data2 = {{Infobox | decat = yes | child = yes
  |title = Second subsection
  | label1= Label 2.1
  | data1 = Data 2.1
  }}
 | belowstyle = 
 | below = Below text
}}

嵌入使用

的信息框模板示例

信息框模板遵循通用模板语法来命名模板并为其提供(已命名或未命名)参数。您可以在帮助:模板用法语法一节中找到概述。由于Mediawiki本身是用PHP编写的,您甚至可以在其源代码中找到与解析这些模板代码相关的PHP代码。它展示了如何以比帮助页面更严格的方式解析这些数据,但是由于它的源代码采用了一点模块化和结构化的方式,因此它要复杂得多。根据你的程序员类型,它可能会让你不知所措,因为它需要阅读技巧和关于PCRE正则表达式的知识。

从我可以看到到目前为止,你需要提取(递归){{}}先阻塞。在这些文件中,您解析标题和任意数量的(已命名或未命名的)参数。分隔这些字段的分隔符是|。我不能说这些分隔符是否可以或如何转义,也不能说字段和名称是否可以使用多行值-在给出的示例旁边显示值可以是另一个模板,然后可以是多行