PHP XML dosyası bir özelliğin değerini almak nasıl?

3 Cevap php

Maalesef bu kolay bir soru gibi görünüyor, ama ben bu saç çekerek başladım eğer ...

Şöyle bir XML dosyası var ...

<VAR VarNum="90">
  <option>1</option>
</VAR>

Ben VarNum almaya çalışıyorum.

Şimdiye kadar ben diğer bilgileri almak için takip kodu kullanarak başarılı oldum:

$xml=simplexml_load_file($file);
$option=$xml->option;

Ben sadece (bence nitelik değerini?) Varnum alınamıyor

Teşekkürler!

3 Cevap

Bu kullanarak SimpleXMLElement::attributes() almak gerekir

Bu deneyin:

$xml=simplexml_load_file($file);
foreach($xml->Var[0]->attributes() as $a => $b) {
    echo $a,'="',$b,"\"\n";
}

İşte tüm ad / değer ilk foo elemanı niteliklerini size gösterecektir. Bu bir ilişkisel dizi, bu yüzden siz de yapabilirsiniz:

$attr = $xml->Var[0]->attributes();
echo $attr['VarNum'];

Ne kullanma hakkında $xml['VarNum']?

Bu gibi:

$str = <<<XML
<VAR VarNum="90">
  <option>1</option>
</VAR>
XML;

$xml=simplexml_load_string($str);
$option=$xml->option;

var_dump((string)$xml['VarNum']);

(Ben bir dize içine XML yapıştırılan ettik, çünkü ben yerine bir dosyanın oluşturma, simplexml_load_string kullandım, siz simplexml_load_file ince ile ne yapıyorsun, sizin durumunuzda!)

Alırsınız

string '90' (length=2)

With simpleXML, you access attributes with an array syntax.
And you have to cast to a string to get the value, and not and instance of SimpleXMLElement

Örneğin, manuel :-) in example #5 Basic usage of bakınız

[0] => Array
                (
                    [@attributes] => Array
                        (
                            [uri] => https://abcd.com:1234/abc/cst/2/
                        [id] => 2
                    )

                [name] => Array
                    (
                        [first] => abcd
                        [last] => efg
                    )

                [company] => abc SOLUTION
                [email] => abc@xyz.com
                [homepage] => WWW.abcxyz.COM
                [phone_numbers] => Array
                    (
                        [phone_number] => Array
                            (
                                [0] => Array
                                    (
                                        [main] => true
                                        [type] => work
                                        [list_order] => 1
                                        [number] => +919876543210
                                    )

                                [1] => Array
                                    (
                                        [main] => false
                                        [type] => mobile
                                        [list_order] => 2
                                        [number] => +919876543210
                                    )

                            )

                    )

                [photo] => Array
                    (
                        [@attributes] => Array
                            (
                                [uri] => https://abcd.com:1234/abc/cst/2/cust_photo/
                            )

                    )

            )

I aşağıdaki kodu uygulanan

$xml = simplexml_load_string($response);
$json = json_encode($xml);
$array = json_decode($json,TRUE);
print_r($array);

ama ben php tek bir dizideki tüm verileri istediğiniz tam kullanmak değil