私は要素からアクセスするために必要なXMLフィードを持っています。しかし、私が試した方法のどれも働いていません。以下はPHPのXMLファイルから要素を読み取るにはどうすればよいですか?
はフルでXMLフィードです:
<GeocodeResponse>
<status>OK</status>
<result>
<type>locality</type>
<type>political</type>
<formatted_address>Liverpool, Merseyside, UK</formatted_address>
<address_component>
<long_name>Liverpool</long_name>
<short_name>Liverpool</short_name>
<type>locality</type>
<type>political</type>
</address_component>
<address_component>
<long_name>Merseyside</long_name>
<short_name>Mersyd</short_name>
<type>administrative_area_level_2</type>
<type>political</type>
</address_component>
<address_component>
<long_name>England</long_name>
<short_name>England</short_name>
<type>administrative_area_level_1</type>
<type>political</type>
</address_component>
<address_component>
<long_name>United Kingdom</long_name>
<short_name>GB</short_name>
<type>country</type>
<type>political</type>
</address_component>
<geometry>
<location>
<lat>53.4115400</lat>
<lng>-2.9901160</lng>
</location>
<location_type>APPROXIMATE</location_type>
<viewport>
<southwest>
<lat>53.3049930</lat>
<lng>-3.2462348</lng>
</southwest>
<northeast>
<lat>53.5178208</lat>
<lng>-2.7339972</lng>
</northeast>
</viewport>
<bounds>
<southwest>
<lat>53.3115426</lat>
<lng>-3.0191794</lng>
</southwest>
<northeast>
<lat>53.5039071</lat>
<lng>-2.8115043</lng>
</northeast>
</bounds>
</geometry>
</result>
</GeocodeResponse>
私はgeometry->、場所に> lat->場所を選択しようとすると、この緯度とLNGの中にいます。
を( http://php.net/manual/en/book.xml.php) –
ここにPHPに関する質問はありますか?コードはありますか?どのようにファイルを読んでいるのですか?あなたは何も働いていないと言いますが、何を試しましたか? –
[PHPでXMLファイルを解析する方法]の複製が可能です(http://stackoverflow.com/questions/1706042/how-to-parse-xml-file-in-php) –