0

以下の XML ファイルを解析する必要があります。

https://www.performanceexchange.com/publisher/report/api/17adeb41da1343209a32e6790ee1a286/xml/report/stats?startDate=2012-07-01&endDate=2012-08-13

$xml = simplexml_load_file( urlencode($mediatrust_url) );

どの出力:

SimpleXMLElement Object
(
    [@attributes] => Array
    (
        [name] => StatsReport
    )

)

そのため、最初のタグの名前を取得するだけのようです。

4

1 に答える 1

3

これを試して:

foreach($xml->attributes() as $k => $v)
{
    if($k == "name")
    {
        //do something
    }
}

また、次のように XML 文字列を読み込んでみてください。

$sxml = simplexml_load_string(@file_get_contents($url));
于 2012-08-14T17:41:52.550 に答える