2017-12-08 31 views
0

多くの類似した投稿があることは知っていますが、どのような提案もうまく実装できませんでした。PHPでXML名前空間とスキーマを解析する

<?xml version="1.0" encoding="UTF-8" standalone="no" ?> 
    <message:MessageGroup xmlns:message="http://www.SDMX.org/resources/SDMXML/schemas/v1_0/message" xmlns:common="http://www.SDMX.org/resources/SDMXML/schemas/v1_0/common" xmlns:frb="http://www.federalreserve.gov/structure/compact/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.SDMX.org/resources/SDMXML/schemas/v1_0/message SDMXMessage.xsd http://www.federalreserve.gov/structure/compact/common frb_common.xsd"> 

     <?frb EmbargoDate="2017-10-24T00:00:00"?>  

    <frb:DataSet id="Yields" xmlns:kf="http://www.federalreserve.gov/structure/compact/Yields_Yields" xsi:schemaLocation="http://www.federalreserve.gov/structure/compact/Yields_Yields Yields_Yields.xsd"> 
    </frb:DataSet> 

    <frb:DataSet id="Yields" xmlns:kf="http://www.federalreserve.gov/structure/compact/Yields_Parameters" xsi:schemaLocation="http://www.federalreserve.gov/structure/compact/Yields_Parameters Yields_Parameters.xsd"> 
    <kf:Series BT="Nominal" CURRENCY="NA" FREQ="9" Parameter="B0" SERIES_NAME="BETA0" UNIT="Number" UNIT_MULT="1"> 
     <frb:Annotations> 
     <common:Annotation> 
      <common:AnnotationType>Short Description</common:AnnotationType> 
      <common:AnnotationText>Beta0 Coefficient for Nominal Treasury Yields as Estimated by the Svensson Term Structure Model</common:AnnotationText> 
     </common:Annotation> 
     </frb:Annotations> 
     <frb:Obs OBS_STATUS="A" OBS_VALUE="3.91760612" TIME_PERIOD="1961-06-14"/> 
     <frb:Obs OBS_STATUS="A" OBS_VALUE="3.97849787" TIME_PERIOD="1961-06-15"/> 
     <frb:Obs OBS_STATUS="A" OBS_VALUE="3.98435045" TIME_PERIOD="1961-06-16"/> 
     <frb:Obs OBS_STATUS="A" OBS_VALUE="4.00437935" TIME_PERIOD="1961-06-19"/> 
     <frb:Obs OBS_STATUS="A" OBS_VALUE="3.98578922" TIME_PERIOD="1961-06-20"/> 
     <frb:Obs OBS_STATUS="A" OBS_VALUE="4.00405894" TIME_PERIOD="1961-06-21"/> 
     <frb:Obs OBS_STATUS="A" OBS_VALUE="4.00089634" TIME_PERIOD="1961-06-22"/> 
    </kf:Series> 
    </frb:DataSet> 
</message:MessageGroup> 

YieldsParameters.xsdファイルエキス:

xmlns:frb="http://www.federalreserve.gov/structure/compact/common"> 
<xs:import namespace="http://www.federalreserve.gov/structure/compact/common" schemaLocation="frb_common.xsd"/> 

私はOBS_VALUEとTIME_PERIOD属性の取得に興味を持って利用可能な2つのデータセットhereとXML -

私は、次のデータの抽出物を持っています2番目のデータセットからまた、シリーズ内の観測数を数えたいと思います。私は、観測値を取得していない考慮

$myFileXml = 'feds200628.xml'; 
$xml = simplexml_load_file($myFileXml); 

$xml->DataSet[1]->Series[0] as $Ser 
$ns_dc = $Ser ->children('http://www.federalreserve.gov/structure/compact/common'); 
echo $ns_dc->Obs[0]->->Attributes()->OBS_VALUE; 

echo $count = count($xml->children('http://www.federalreserve.gov/structure/compact/common',true)->DataSet[1]->Series[0]->Obs); 

とカウントが、私はここに非常に基本的な何かが欠けています信じて、0を返します:following suggestion私のサンプルコードを使用して

は次のようになります。私もそれ奇妙なこと

print_r($xml); 

戻り見つける:

SimpleXMLElementオブジェクトを([FRB] => SimpleXMLElementオブジェクト() [コメント] =>のSimpleXMLElementオブジェクト())

答えて

1

があります。このメソッドはXPathを使用してデータを検索します。これにより、DOMを移動してデータを見つける必要がなくなります。 XPathの持つ主なものは、しかしXPathはPHPの配列は0で一方だけOBSの要素は(そのXPathのアレイが1基づいています返し

$myFileXml = 'feds200628.xml'; 
$xml = simplexml_load_file($myFileXml); 
$xml->registerXPathNamespace('frb', 'http://www.federalreserve.gov/structure/compact/common'); 
$xml->registerXPathNamespace('kf', "http://www.federalreserve.gov/structure/compact/Yields_Parameters"); 
$ns_dc = $xml->xpath("//frb:DataSet[2]/kf:Series[1]/frb:Obs"); 
echo $ns_dc[0]->Attributes()->OBS_VALUE.PHP_EOL; 
$count = count($ns_dc); 
echo $count.PHP_EOL; 

...クエリでそれらを使用できるようにするために名前空間を登録することですこれは2番目の要素を取得するために2を使用する理由です)。

+0

完璧、ありがとう – bgolfb

+0

OK - あなたの問題を解決する場合は、この回答を受け入れることができます。ありがとう –