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

I have a SimpleXMLElement like this:

SimpleXMLElement Object ( [trailer] => SimpleXMLElement Object (
[title] => This is the title
[link] => http://example.com
[trailer_id] => 60373
[embed] => SimpleXMLElement Object ( ) ) )

I've google for two hours now, and couldn't find how to print the "trailer_id". Could anybody point me in the right direction?

Thanks in advance!

share|improve this question
1  
Interesting what text you used while searching this. – PLB Oct 5 '12 at 13:44
Would you mind posting the original XML? – Explosion Pills Oct 5 '12 at 13:44
Two hours? :o). Just found this, which looks very helpful. – halfer Oct 5 '12 at 13:46
seems like i just used the wrong key words for about two hours.. :P – user1121239 Oct 5 '12 at 13:59
1  
seems like you should have started with php.net/manual/en/simplexml.examples-basic.php – Gordon Oct 5 '12 at 14:26
show 1 more comment

closed as too localized by halfer, Gordon, SomeKittens, hakre, tereško Oct 5 '12 at 14:48

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 1 down vote accepted

They are objects, try:

echo $xml->trailer->trailer_id;
share|improve this answer
thanks, work like a charm. – user1121239 Oct 5 '12 at 13:58

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