1

私がこれまでに持っているのは、以下のコードです。問題は にあると思い$bodies = $xml->xpath('domain:cd');ます。パスを定義する方法が正確にはわかりません。

いくつかの例を見ようとしましたが、それを理解することができませんでした。

XML

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:ietf:params:xml:ns:epp-1.0
epp-1.0.xsd">
<response>
    <result code="1000">
    <msg>Command completed successfully</msg>
    </result>
<resData>
    <domain:chkData xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"
    xsi:schemaLocation="urn:ietf:params:xml:ns:domain-1.0
    domain-1.0.xsd">
        <domain:cd>
        <domain:name avail="0">domain001.gr</domain:name>
        <domain:reason>In Use.</domain:reason></domain:cd>
    </domain:chkData>
</resData>

PHP コード

$xml = simplexml_load_string($result, NULL, NULL, 'urn:ietf:params:xml:ns:epp-1.0');
$xml->registerXPathNamespace('domain', 'urn:ietf:params:xml:ns:domain-1.0');

$bodies = $xml->xpath('/resData/domain:chkData');
echo "alitheia";
foreach($bodies as $body){

    $reply = $body->children('domain', TRUE)->cd;

    $nameout =(string)$reply->name;
    echo $nameout;
    echo "alitheia2";

}

「alitheia」エコーは、コードがどこに到達したかを確認するためのデバッグ用です。"Alitheia2" は表示されません。

他の誰かがこの問題に遭遇した場合に備えて、それを解決したコード

//i loaded the xml in the p2xml variable using file_get_contents
        $p2xml = new SimpleXmlElement($p2xmlf);
        foreach ($p2xml->response->resData $entry2)
        {
            $namespaces = $entry2->getNameSpaces(true);
            $dc = $entry2->children($namespaces['domain']);
            $nameout = $dc->chkData->name;
            //below is what i used to get the attribute
                            $attrout = $dc->chkData->name->attributes();
            $oxml = $p2xml->asXML();
        }
4

2 に答える 2

1

コードに関する 2 つの問題:

  1. urn:ietf:params:xml:ns:epp-1.0名前空間も登録して使用します。

    $xml->registerXPathNamespace('epp', 'urn:ietf:params:xml:ns:epp-1.0');
    

    epp:resDataの代わりにXPath 式で使用しますresData

  2. <resData/>ルート要素はありません。それらすべてを検索する場合は、 を使用する//epp:resData/domain:chkDataか、フル パスを指定します: /epp:epp/epp:response/epp:resData/domain:chkData


名前だけが必要な場合は、XPath を使用して直接選択してみませんか?

$bodies = $xml->xpath('//epp:resData/domain:chkData/domain:cd/domain:name/text()');
// Or even use: '//domain:name/text()'
foreach ($bodies as $body)
  echo $body;
于 2013-09-02T13:35:27.947 に答える