I try too many thing to read the value of the [label] from the code below :

    Array ( [0] => 
    SimpleXMLElement Object
    (
       [id] => x 
       [published] => 2011
       [category] =>
     Array ( [0] => 
      SimpleXMLElement Object 
      ( 
      [@attributes] => 
        Array (
        [scheme] => y 
        [term] => t 
        ) )
        [1] => SimpleXMLElement Object 
        ( [@attributes] => 
        Array (
        [scheme] => y2 
        [term] => Film
        [label] => Film & Animation 
        ) )

it start with numeric array ,any guidance please ?

link|improve this question

80% accept rate
1  
possible duplicate of PHP get values from SimpleXMLElement array, see also the Basic Usage Examples in the manual. – hakre Sep 29 '11 at 23:23
tanx , i saw those , but it did not work for me , it has 2 dim array ... really condused :| – user972087 Sep 29 '11 at 23:40
feedback

1 Answer

up vote 0 down vote accepted

Isn't your answer as simple as:

$data->category['label']?

See simplexml documentation next time, all attributes are accessible from an array, and all subnodes are accessible through the object property operator.

If you have many categories, then you will have an array at "category[0]"

link|improve this answer
Oh wait, i hadn't seen the structure correctly, it is in fact: $data->category[1]['label'] – Mathieu Dumoulin Sep 30 '11 at 0:02
You can edit your answer. – someone Sep 30 '11 at 0:14
feedback

Your Answer

 
or
required, but never shown

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