1
您好,我有這一塊的XML:如何使用simplexml訪問PHP中的XML屬性?
<foo id="whatever" default="whatever">
FOO
</foo>
如何訪問像id
或default
屬性?
如果我print_r($xml->foo)
我看到他們,但他們與@
您好,我有這一塊的XML:如何使用simplexml訪問PHP中的XML屬性?
<foo id="whatever" default="whatever">
FOO
</foo>
如何訪問像id
或default
屬性?
如果我print_r($xml->foo)
我看到他們,但他們與@
前置使用的屬性和對象語法數組語法子節點:
$xml->foo['id'] // get `id` attribute on `foo` node
見Using attributes
例子在這裏:http://docs.php.net/manual/en/simplexml.examples-basic.php#example-4741
另請參閱attributes()
方法。
但是$ node ['id]給了我一個包含具有該值的數組的對象,而不是值:|有沒有更快的方法來做到這一點? – Vera
你可以用'(字符串)$ node ['id']騙取並將其轉換爲字符串' – helloandre
tx我被騙了:D – Vera