Skip to content

Instantly share code, notes, and snippets.

@phpfiddle
Created September 10, 2012 17:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phpfiddle/ec165a789941a37e51d8 to your computer and use it in GitHub Desktop.
Save phpfiddle/ec165a789941a37e51d8 to your computer and use it in GitHub Desktop.
cURL and XML parsing
<?php
/**
* cURL and XML parsing
*
*/
$url = "http://www.w3schools.com/xml/simple.xml";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 1);
$content = curl_exec($ch);
curl_close($ch);
$xml = simplexml_load_string($content);
$results = $xml->xpath('/breakfast_menu/food');
foreach($results as $result)
{
echo "Name : " . $result->name . "<br />";
echo "Description : " . $result->name . "<br />";
echo "Price : " . $result->price . ", Calories : " . $result->calories . "<br /><br />";
}
?>
@phpfiddle
Copy link
Author

PhpFiddle.org sample file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment