Skip to content

Instantly share code, notes, and snippets.

@airways
Created January 18, 2011 15:53
Show Gist options
  • Save airways/784626 to your computer and use it in GitHub Desktop.
Save airways/784626 to your computer and use it in GitHub Desktop.
<?php
$xml_result = new SimpleXMLElement($W->return_data);
var_dump($xml_result);
echo "is_array = " . is_array($xml_result->entry) . "<br/>";
echo "count = " . count($xml_result->entry) . "<br/>";
?>
output:
object(SimpleXMLElement)[311]
public 'entry' =>
array
0 =>
object(SimpleXMLElement)[317]
1 =>
object(SimpleXMLElement)[318]
is_array =
count = 41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment