php xpath sorunlar

2 Cevap php

Ben bir cURL POST yapıyor ve geri hata yanıtı almak bir dizi ayrıştırmak ama şimdi xpath ile ilgili sorunlar yaşıyorum.

/ / XML

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<errors xmlns="http://host/project">
   <error code="30" description="[] is not a valid email address."/>
   <error code="12" description="id[] does not exist."/>
   <error code="3" description="account[] does not exist."/>
   <error code="400" description="phone[] does not exist."/>
</errors>

/ / Fonksiyon / Sınıf

class parseXML
{
    protected $xml;

    public function __construct($xml) {
        if(is_file($xml)) {
            $this->xml = simplexml_load_file($xml);
        } else {
            $this->xml = simplexml_load_string($xml);
        }
    }

    public function getErrorMessage() {
        $in_arr = false;
        $el = $this->xml->xpath("//@errors");        
        $returned_errors = count($el);

        if($returned_errors > 0) {
            foreach($el as $element) {
                if(is_object($element) || is_array($element)) {
                    foreach($element as $item) {
                        $in_arr[] = $item;
                    }
                }
            }
        } else {
            return $returned_errors;
        }            
        return $in_arr;
    }
}

/ / Arama işlevi

// $errorMessage is holding the XML value in an array index
// something like: $arr[3] = $xml;
$errMsg = new parseXML($arr[3]); 
$errMsgArr = $errMsg->getErrorMessage();

Ne istiyorum hata kodu ve açıklama tüm değerleri nitelik olduğunu

EDIT:

Tamam bu print_r (true $ this-> xml) 'dir;

SimpleXMLElement Object
(
    [error] => Array
        (
            [0] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [code] => 30
                            [description] => [] is not a valid email address.
                        )

                )

            [1] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [code] => 12
                            [description] => Id[12345] does not exist.
                        )

                )

            [2] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [code] => 3
                            [description] => account[] does not exist.
                        )

                )

            [3] => SimpleXMLElement Object
                (
                    [@attributes] => Array
                        (
                            [code] => 400
                            [description] => phone[] does not exist.
                        )

                )

        )

)

neden, herhangi bir düşünce kodu ve açıklamasını alabilir bana yaşam için ben çözemiyorum?

EDIT #2 Okay so I guess I will break it down.

Ben bizim sunuculardan biri için bir istek POST cURL kullanarak değilim, ben HTTP yanıt başlıklarını ve (xml döndürdü) xml ayrıştırmak. başlık / xml her satırı ben bir diziye patlayabilir. bir hata varsa bu yüzden diziye ekstra bir indeks bkz. Ben o zaman böyle bir şey yapmak.

$if_err_from_header = $http_return_response[10]; 
// I know that index 10 is where if any the error message in xml is (the one posted above).

bundan sonra ben bunu:

$errMsg = new parseXML($if_err_from_header); 
$errMsgArr = $errMsg->getErrorMessage();

hala hata niteliklerinden kodunu ve açıklamasını alınamıyor, ne eksik?

EDIT #3 Okay why does this work?

$in_arr = false;
// This returns all the code attributes
$el = $this->xml->xpath("//@code");

# if $el is false, nothing returned from xpath(), set to an empty array
$el = $el == false ? array() : $el;

foreach($el as $element) {
    $in_arr[] = array("code" => $element["code"], "description" => $element["description"]);
}
return $in_arr;

EDIT # 4:

Tamam bu ben istiyorum ama o tür kesmek değerler, belirli öğeleri ama seçmek istiyorum alır ...

$el = $this->xml->xpath("//*");

2 Cevap

Dikkate ad almak emin olun:

$this->xml->registerXPathNamespace('n', 'http://host/project');
$el = $this->xml->xpath("/n:errors/n:error");
$returned_errors = count($el);

Ve aşağı düşük değerlerini erişim örneği ..

foreach($el as $element) {
   print "code: " . $element["code"] . "\n";
}

@ XPath'daki özellik seçici olduğunu. Bunu olmalıdır böylece kök öğesi seçmek için çalışıyveyauz:

  $el = $this->xml->xpath("/errveyas");

Tüm hata öğeleri seçmek istiyveyasanız, kullanmak

  $el = $this->xml->xpath("/errveyas/errveya");

veya

  $el = $this->xml->xpath("//errveya");