I am having some problems extracting the data I want from a SimpleXMLElement object. Here is the basics of the code I am using:

curl_setopt( $ch, CURLOPT_URL, $URL );
$html = curl_exec( $ch );
$html = $tidy->parseString( $html, $tc, 'utf8' );
$tidy->cleanRepair();
$html = $tidy->body()->value;
$xml = new SimpleXMLElement( $html );

$xml = $xml->xpath( "//ul[@id='wxoptions']/li[3]/a" ); //Your XPATH

print_r( $xml );

This navigates to the correct HTML element I want, but prints:

Array
(
    [0] => SimpleXMLElement Object
        (
            [@attributes] => Array
                (
                    [href] => http://www.mylink.com
                    [title] => mylink
                )

            [0] => mylink
        )

)

The value I need is the [href], "http://www.mylink.com" in that array. How do I extract that from the output I included? I'm stumped and very new to SimpleXMLElement and Xpath. Thank you!

link|improve this question

1  
Note that you can also select attibute's directly: //ul[@id='wxoptions']/li[3]/a/@href – lwburk Dec 11 '11 at 20:59
Thanks! This is really helpful – dremme Dec 11 '11 at 22:44
feedback

1 Answer

up vote 0 down vote accepted

Use iterate, and attributes

foreach ( $xml->xpath( "//ul[@id='wxoptions']/li[3]/a" ) as $node)
{
  $href = $node->attributes("href");
}

Or directly called :

$href = $xml[0]->attributes("href");
link|improve this answer
I tried using both of these approaches: $xml = $xml->xpath( "//ul[@id='wxoptions']/li[3]/a" ); $href = $xml[0]->attributes("href"); But this returns an empty SimpleXMLElement Object to $href. – dremme Dec 11 '11 at 19:14
Just to clarify, which method you have used ? (The one you mentioned in the comment is a wrong usage) – ajreal Dec 11 '11 at 19:16
Or you can include the example of the XML ? – ajreal Dec 11 '11 at 19:17
You're responses helped me come to a solution. Thanks for you're help. – dremme Dec 11 '11 at 19:33
feedback

Your Answer

 
or
required, but never shown

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