loading xml slow down my site

Posted by Ayrton on Stack Overflow See other posts from Stack Overflow or by Ayrton
Published on 2010-05-21T15:41:27Z Indexed on 2010/05/21 15:50 UTC
Read the original article Hit count: 225

Filed under:
|

Hi

is it possible that loading an xml is slowing down my site?

I've written this little function in php to iterate over an array of Strings to calculate the total amount of my followers

function getFeedCount() {

    foreach ($array as $value) {
        $xml = simplexml_load_file("http://api.feedburner.com/awareness/1.0/GetFeedData?uri=$value")
                or die ("Unable to load XML file!");
        $circulation += $xml->feed->entry['circulation'];
    }   
    return $circulation;
}

the array is about 10 items big and since I started using it, it really slowed down my site.

What could I do fix this issue.

© Stack Overflow or respective owner

Related posts about Xml

Related posts about php