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 the following code that is giving me the error 'Fatal error: Call to a member function attributes() on a non-object in /home/skunk/public_html/index.php on line 24':

$api_xml = simplexml_load_string($api_fetch);
    print_r($api_xml);
    foreach($api_xml->concept[0]->attributes() as $a => $b) {
        echo $a, '="', $b, "\"\n";
    }

You can assume that the dump of $api_xml looks like this-

SimpleXMLElement Object ( [about] => SimpleXMLElement Object ( [requestId] => 9A36FDCE48CECFC8211BA1B70A7ABF27 [docId] => 4DE475F02428915C65AF14DE1713245B [systemType] => concept [configId] => odp_2007_l1_1.7k [contentType] => text/html [contentDigest] => 0BCA11810B6ABB1B549F73C81E27D9CE [requestDate] => 2012-04-19T20:31:44+00:00 [systemVersion] => 2.1 [sourceUri] => http://www.seomoz.org/ugc/folders-vs-subdomains-vs-cctld-in-international-seo-an-overview ) [conceptExtractor] => SimpleXMLElement Object ( [conceptExtractorResponse] => SimpleXMLElement Object ( [concepts] => SimpleXMLElement Object ( [concept] => Array ( [0] => SimpleXMLElement Object ( [@attributes] => Array ( [weight] => 0.11715982 [label] => subdomains ) ) [1] => SimpleXMLElement Object ( [@attributes] => Array ( [weight] => 0.070213296 [label] => seo ) ) [2] => SimpleXMLElement Object ( [@attributes] => Array ( [weight] => 0.018829565 [label] => pagerank ) ) [3] => SimpleXMLElement Object ( [@attributes] => Array ( [weight] => 0.008712655 [label] => matt cutts ) ) [4] => SimpleXMLElement Object ( [@attributes] => Array ( [weight] => 0.0052391924 [label] => domain ) ) [5] => SimpleXMLElement Object ( [@attributes] => Array ( [weight] => 0.0050669983 [label] => google ) ) [6] => SimpleXMLElement Object ( [@attributes] => Array ( [weight] => 0.0033815766 [label] => subdomain ) ) [7] => SimpleXMLElement Object ( [@attributes] => Array ( [weight] => 0.0019468316 [label] => serps ) ) [8] => SimpleXMLElement Object ( [@attributes] => Array ( [weight] => 0.0019297466 [label] => folder ) ) ) ) ) ) ) 

I'm trying to get the value of the attributes in the <concept> node such that it returns:

label="wordpress"

weight="0.032873303"

The foreach is line 24. Why am I getting this error? What do I need to do to fix?

share|improve this question
What does var_dump($api_xml->concept[0]) say? – Explosion Pills Apr 19 '12 at 21:00
You will always get that error if you treat a variables as an object that ain't one. Stop doing that and the error will disappear. Has been asked a thousand times, it's actually trivial, see the many duplicates. – hakre Apr 19 '12 at 21:31
we are bind here without $api_fetch – Baba Apr 19 '12 at 22:32
@Baba - var_dump($api_fetch) is > string(975) " 287CED14E8894A0C6065A77BF2B28A24 347FD4AA9321CBAAD16AD1E14DD50B4B concept odp_2007_l1_1.7k text/html 29EA2C8FDBE322E145A0BCC725CDAE82 2012-04-20T14:06:28+00:00 2.1 foo.com " – Marty Apr 20 '12 at 14:07
@tandu it outputs as NULL – Marty Apr 20 '12 at 14:07
show 1 more comment

closed as too localized by vascowhite, j0k, tereško, bažmegakapa, bensiu Oct 24 '12 at 2: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

I fixed my own problem.

foreach($s->conceptExtractor->conceptExtractorResponse->concepts->concept[$j]->attributes() as $a => $b) {
    echo $a . '="' . $b . '"<br />';
}
share|improve this answer

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