Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Just trying to figure a shorter way to do this:

I'm using simpleXMLElement to parse an xml file and it's aggravating to have to call two lines to process an array when I know what node I want.

Current code:

$xml = new SimpleXMLElement($data);
$r = $xml->xpath('///givexNumber');
$result["cardNum"] = $r[0];

What I would like to do would be something like I can do with DomX

$result["cardNum"] = $xml->xpath('///givexNumber')->item(0)->nodeValue;

Any ideas?

I didn't really see that simplexmlelement can do this, but thought someone might know a trick or two.

share|improve this question

1 Answer

I don't know php too well, but shouldn't:

$result["cardNum"] = new SimpleXMLElement($data)->xpath('///givexNumber')[0]

be the same as

$xml = new SimpleXMLElement($data);
$r = $xml->xpath('///givexNumber');
$result["cardNum"] = $r[0];
share|improve this answer
One would think. But $r = $xml->xpath('///givexNumber')[0] does not work. – Senica Gonzalez May 12 '10 at 3:08

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.