将XML值放入选择中

时间:2017-05-02 07:16:30

标签: php html xml

我有一个服务器返回的XML:

<cs><c n="flightsearch"><q n="XSD" v="<?xml version="1.0" encoding="utf-8" ?> <xsd:schema attributeFormDefault="unqualified" elementFormDefault="qualified" version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema">  <xsd:element name="rows"> <xsd:complexType> <xsd:sequence> <xsd:element maxOccurs="unbounded" name="row"> <xsd:complexType> <xsd:sequence>  <xsd:element name="FlightID" type="xsd:string" />  <xsd:element name="FlightType" type="xsd:string" />  <xsd:element name="FlightDate" type="xsd:string" />  <xsd:element name="FlightTime" type="xsd:string" />  <xsd:element name="fromairport" type="xsd:string" />  <xsd:element name="toairport" type="xsd:string" />  <xsd:element name="Route" type="xsd:string" />  <xsd:element name="seats" type="xsd:string" />  <xsd:element name="Price" type="xsd:string" />  <xsd:element name="ChildPrice" type="xsd:string" />  <xsd:element name="Duration" type="xsd:string" />  <xsd:element name="flightsummary" type="xsd:string" />  <xsd:element name="flightimage" type="xsd:string" /> </xsd:sequence> <xsd:attribute name="id" type="xsd:int" /> </xsd:complexType> </xsd:element> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:schema>"/><q n="XML" v="<?xml version="1.0" encoding="utf-8" ?> <rows xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation = "Articles_Schema.xsd" >  <row id="1">   <FlightID><![CDATA[FLT49596|ART02504.20170715||CREEKSILVER]]></FlightID>   <FlightType><![CDATA[Seawings Creek Silver]]></FlightType>   <FlightDate>7/15/2017</FlightDate>   <FlightTime><![CDATA[10:45]]></FlightTime>   <fromairport><![CDATA[Dubai Creek Golf]]></fromairport>   <toairport><![CDATA[Dubai Creek Golf]]></toairport>   <Route><![CDATA[DCG/DCG]]></Route>   <seats>9</seats>   <Price><![CDATA[AED 1,695.00 per person]]></Price>   <ChildPrice><![CDATA[AED 1,440.00 per child]]></ChildPrice>   <Duration>40</Duration>   <flightsummary><![CDATA[Named to commemorate Dubais historic pearling heritage, this tour starts as you gently exit the harbour where you marvel at Dubais breath-taking collection of sights. After passing the outstanding Dubai Marina you are treated to a birds eye view of the world-famous The Palm JumeirahTM, then onto the seven star Burj Al Arab hotel, before moving inland to Downtown Dubai and past the Burj Dubai, destined to be the worlds tallest building, followed by a sweeping arc out to The World islands, before heading back along the coastline for a second pass and a gentle splash back down to earth.]]></flightsummary>   <flightimage><![CDATA[]]></flightimage> </row> <row id="2">   <FlightID><![CDATA[FLT49598|ART02506.20170715||CREEKSILVER]]></FlightID>   <FlightType><![CDATA[Seawings Creek Silver]]></FlightType>   <FlightDate>7/15/2017</FlightDate>   <FlightTime><![CDATA[11:00]]></FlightTime>   <fromairport><![CDATA[Dubai Creek Golf]]></fromairport>   <toairport><![CDATA[Dubai Creek Golf]]></toairport>   <Route><![CDATA[DCG/DCG]]></Route>   <seats>9</seats>   <Price><![CDATA[AED 1,695.00 per person]]></Price>   <ChildPrice><![CDATA[AED 1,440.00 per child]]></ChildPrice>   <Duration>40</Duration>   <flightsummary><![CDATA[Named to commemorate Dubais historic pearling heritage, this tour starts as you gently exit the harbour where you marvel at Dubais breath-taking collection of sights. After passing the outstanding Dubai Marina you are treated to a birds eye view of the world-famous The Palm JumeirahTM, then onto the seven star Burj Al Arab hotel, before moving inland to Downtown Dubai and past the Burj Dubai, destined to be the worlds tallest building, followed by a sweeping arc out to The World islands, before heading back along the coastline for a second pass and a gentle splash back down to earth.]]></flightsummary>   <flightimage><![CDATA[]]></flightimage> </row> </rows> "/></c></cs>

如何将它放入PHP中的单选按钮,如下所示:

  • Seawings Creek Silver 日期:2017年7月15日 飞行时间:10:45 路线:DCG / DCG

  • Seawings Creek Silver 日期:2017年7月15日 飞行时间:11:00 路线:DCG / DCG

0 个答案:

没有答案