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?
var_dump($api_xml->concept[0])say? – Explosion Pills Apr 19 '12 at 21:00$api_fetch– Baba Apr 19 '12 at 22:32