Categories

Get average feedburner reader numbers

function get_average_readers($feed_id,$interval = 7) { $today = date(‘Y-m-d’, strtotime("now")); $ago = date(‘Y-m-d’, strtotime("-".$interval." days")); $feed_url="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=".$feed_id."&dates=".$ago.",".$today; $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_URL, [...]

Currency conversion

 

function currency($from_Currency,$to_Currency,$amount) { $amount = urlencode($amount); $from_Currency = urlencode($from_Currency); $to_Currency = urlencode($to_Currency); $url = "http://www.google.com/ig/calculator?hl=en&q=$amount$from_Currency=?$to_Currency"; $ch = curl_init(); $timeout = 0; curl_setopt ($ch, CURLOPT_URL, [...]

Latest weather using PHP

<?php    $xml = simplexml_load_file(‘http://www.google.com/ig/api?weather=ADDRESS’);   $information = $xml->xpath("/xml_api_reply/weather/current_conditions/condition");   echo $information[0]->attributes(); ?>

Bookmark It