Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Driving me bonkers- I've got a simple XML element, and I just want to extract the '_Code' attribute. How would I do it?

<?php

$responseCode = "<STATUS _Condition='FAILURE' _Code='0705' _Description='Search failed subject not found' />";
$xml = simplexml_load_string($responseCode);

print_r($xml);

$code = $xml=>@attributes=>_Code; // Parse error
$code = $xml['@attributes']['_Code']; // Returns blank
echo "CODE = ".(string)$code; 

?>

CODE =

http://php.net/manual/en/function.simplexml-load-string.php

share|improve this question

1 Answer

up vote 1 down vote accepted

Use SimpleXMLElement::attributes()

$attrs = $xml->attributes();
$code = $attrs['_Code'];
share|improve this answer
THANK YOU DANNN – Yarin Apr 25 '12 at 18:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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