- yani ben XPath ifadesi "/ / muz / @ renk" ve aşağıdaki örnek xml gibi bir şey kullanarak "sarı" bir dize dönmek istiyor ...
<fruits>
<kiwi color="green" texture="hairy"/>
<banana color="yellow" texture="waxy"/>
</fruits>
$fruits = simplexml_load_string(
'<fruits>
<kiwi color="green" texture="hairy"/>
<banana color="yellow" texture="waxy"/>
</fruits>');
print_r($fruits->xpath('//banana/@color'));
üretir
Array
(
[0] => SimpleXMLElement Object
(
[@attributes] => Array
(
[color] => yellow
)
)
)
i gibi bir şey tercih ediyorum oysa ...
Array
(
[0] => SimpleXMLElement Object
(
[0] => yellow
)
)
... I yazıyorum uygulamasına özel bir durumu yazmak gerekmez ki.
çok teşekkürler! :)