Rumah > Soal Jawab > teks badan
Saya mempunyai sampel data XML berikut yang ingin saya huraikan ke dalam SimpleXML menggunakan PHP:
<?xml version="1.0" encoding="utf-8" ?> <ogr:FeatureCollection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://ogr.maptools.org/ fire_districts.xsd" xmlns:ogr="http://ogr.maptools.org/" xmlns:gml="http://www.opengis.net/gml"> <gml:boundedBy> <gml:Box> <gml:coord><gml:X>112.921100000165</gml:X><gml:Y>-43.65832660868602</gml:Y></gml:coord> <gml:coord><gml:X>153.6407999999201</gml:X><gml:Y>-10.05939999961026</gml:Y></gml:coord> </gml:Box> </gml:boundedBy> <gml:featureMember> <ogr:IDM00007 fid="IDM00007.0"> <ogr:geometryProperty><gml:Polygon><gml:outerBoundaryIs><gml:LinearRing><gml:coordinates>153.551804332204,-28.1645084912738 153.586699999805,-28.2582999997451 153.573299999695,-28.3133 153.582500000375</gml:coordinates></gml:LinearRing></gml:outerBoundaryIs></gml:Polygon></ogr:geometryProperty> <ogr:AAC>NSW_FW001</ogr:AAC> <ogr:DIST_NO>1</ogr:DIST_NO> <ogr:DIST_NAME>Far North Coast</ogr:DIST_NAME> <ogr:STATE_CODE>NSW</ogr:STATE_CODE> <ogr:SOURCE>RFS</ogr:SOURCE> <ogr:GROUP_NAME xsi:nil="true"/> </ogr:IDM00007> </gml:featureMember> <gml:featureMember> <ogr:IDM00007 fid="IDM00007.1"> <ogr:geometryProperty><gml:Polygon><gml:outerBoundaryIs><gml:LinearRing><gml:coordinates>153.261225211474,-29.9401032948311 153.19820000033,-30.038899999935 153.20060000039,-30.1036999997551 153.214099999715</gml:coordinates></gml:LinearRing></gml:outerBoundaryIs></gml:Polygon></ogr:geometryProperty> <ogr:AAC>NSW_FW002</ogr:AAC> <ogr:DIST_NO>2</ogr:DIST_NO> <ogr:DIST_NAME>North Coast</ogr:DIST_NAME> <ogr:STATE_CODE>NSW</ogr:STATE_CODE> <ogr:SOURCE>RFS</ogr:SOURCE> <ogr:GROUP_NAME xsi:nil="true"/> </ogr:IDM00007> </gml:featureMember> </ogr:FeatureCollection>
Saya telah mencuba beberapa cara yang berbeza untuk memuatkan XML ini menggunakan SimpleXML, tetapi apabila saya melakukan print_r pada data, ia akan menjadi kosong:
<?php $data = file_get_contents("fire_districts.gml"); $xml = new SimpleXMLElement($data); $xml->registerXPathNamespace('f', 'http://ogr.maptools.org/'); $xml->registerXPathNamespace('g', 'http://www.opengis.net/gml'); $gml = $xml->xpath('/f:FeatureCollection/g:featureMember'); print_r($gml); ?>
Keluaran adalah seperti berikut:
Array ( [0] => SimpleXMLElement Object ( ) [1] => SimpleXMLElement Object ( ) [2] => SimpleXMLElement Object ( ) [3] => SimpleXMLElement Object ( ) ....
Apakah yang perlu saya ubah untuk berjaya memuatkan data GML ini ke dalam tatasusunan?
Sekian, Mike
P粉0256324372024-04-05 09:05:49
Anda boleh cuba menggunakan "var_dump" untuk mencetak kandungan pembolehubah "$data" atau 'gema' untuk melihat sama ada ia mengandungi data yang dijangkakan.
Lain-lain
Cuba gunakan simplexml_load_string() dan bukannya file_get_contents().