PHP ODATA XML-синтаксический анализ с SimpleXMLElement - PullRequest
2 голосов
/ 01 марта 2012

У меня есть следующее, возвращаемое в виде XML из источника:

<content type="application/xml">
  <m:properties>
    <d:ID>30</d:ID>
    <d:Name></d:Name>
    <d:ProfileImageUrl>default.png</d:ProfileImageUrl>
    <d:ThumbnailUrl>default.png</d:ThumbnailUrl>
    <d:FavoriteCount m:type="Edm.Int64">0</d:FavoriteCount>
    <d:ViewCount m:type="Edm.Int64">12030</d:ViewCount>
    <d:LastMonthViewCount m:type="Edm.Int64">1104</d:LastMonthViewCount>
    <d:LastWeekViewCount m:type="Edm.Int64">250</d:LastWeekViewCount>
    <d:LastDayViewCount m:type="Edm.Int64">21</d:LastDayViewCount>
    <d:CreationDate m:type="Edm.DateTime">2011-03-28T13:46:54.227</d:CreationDate>
    <d:Enabled m:type="Edm.Boolean">true</d:Enabled>
    <d:UrlSafeName>t-boz</d:UrlSafeName>
    <d:LastDayFavoriteCount m:type="Edm.Int64">0</d:LastDayFavoriteCount>
    <d:LastWeekFavoriteCount m:type="Edm.Int64">0</d:LastWeekFavoriteCount>
    <d:LastMonthFavoriteCount m:type="Edm.Int64">0</d:LastMonthFavoriteCount>
    <d:IsOnTour m:type="Edm.Boolean">false</d:IsOnTour>
    <d:TodayRank m:type="Edm.Int32">6272</d:TodayRank>
    <d:WeekRank m:type="Edm.Int32">6851</d:WeekRank>
    <d:MonthRank m:type="Edm.Int32">6915</d:MonthRank>
    <d:AllTimeRank m:type="Edm.Int32">7973</d:AllTimeRank>
  </m:properties>
</content>

Я извлекаю это через file_get_contents, затем создаю через SIMPLEXMLElement. Однако я не могу получить доступ к полям content-> properties (т. Е. ID, Name, ProfileImageUrl и т. Д.). Все, что я вижу из SIMPLEXMLElement, следующее:

[content] => SimpleXMLElement Object ( [@attributes] => Array ( [type] => application/xml ) )

Есть мысли о том, как мне получить эти данные?

Спасибо!

1 Ответ

4 голосов
/ 01 марта 2012

Доступ к элементам пространства имен прост с помощью SimpleXML, вы просто указываете методу children(), какое пространство имен искать.

A super basic пример будет выглядеть:

$xml = <<<XML
<content type="application/xml" xmlns:m="urn:m" xmlns:d="urn:d">
  <m:properties>
    <d:ID>30</d:ID>
    <d:ProfileImageUrl>default.png</d:ProfileImageUrl>
  </m:properties>
</content>
XML;

$content      = simplexml_load_string($xml);

// Quick way
// $properties = $content->children('m', TRUE)->properties->children('d', TRUE);
// echo $properties->ProfileImageUrl;

// Step by step
$m_elements   = $content->children('m', TRUE);
$m_properties = $m_elements->properties;
$d_elements   = $m_properties->children('d', TRUE);
echo $d_elements->ProfileImageUrl;
...