Skip to content

Instantly share code, notes, and snippets.

@shoxty
Created April 6, 2011 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shoxty/905991 to your computer and use it in GitHub Desktop.
Save shoxty/905991 to your computer and use it in GitHub Desktop.
Get the weather condition from googles weather api
<?php
$xml = simplexml_load_file('http://www.google.com/ig/api?weather=[LOCATION]');
$information = $xml->xpath("/xml_api_reply/weather/current_conditions/condition");
echo $information[0]->attributes();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment