<?php
//wolotko - меняем на свой ID
$whaturl="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=wolotko";

$ch = curl_init();

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $whaturl);
$data = curl_exec($ch);
curl_close($ch);

$xml = new SimpleXMLElement($data);
$fb = $xml->feed->entry['circulation'];
//ура - работает

echo $fb;
?>