I am using simplexml to read all the child nodes successfully. But how do I read the "NumCrds"?

<ACCOUNT NumCrds="1">
<ACCNO>some Bank</ACCNO>
<CURRCODE>CAD</CURRCODE>
<ACCTYPE>00</ACCTYPE>
</ACCOUNT>

I have read it somewhere in the PHP manual but I am unable to find it now.

$my_num_cards=$sxe->ACCOUNT['NumCrds']; 

This is printing the number 1 for all the records even if there are values like 2, 3 in the file.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Attributes can be accessed using array indexes:

$data = '<ACCOUNT NumCrds="1">
<ACCNO>some Bank</ACCNO>
<CURRCODE>CAD</CURRCODE>
<ACCTYPE>00</ACCTYPE>
</ACCOUNT>
';
$xml = new SimpleXMLElement($data);

// this outputs 1
echo $xml['NumCrds'];

It is also possible to use the SimpleXMLElement::attributes() function to returns a list of all of the attribute key/value pairs.

$attributes = $xml->attributes();
echo $attributes['NumCrds'];
link|improve this answer
thanks for the tips. – RageZ Dec 15 '10 at 4:54
feedback

Use either $attrs = $el->attributes(); echo $attrs['NumCrds'] or just echo $el['NumCrds']. Attributes are reflected as array elements, while sub-tags are reflected as object properties.

link|improve this answer
feedback
$my_num_cards=$item->attributes()->NumCrds; 

This is what I was looking for. Thanks for all your help.

http://fr.php.net/manual/en/simplexmlelement.attributes.php#94433

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.