如何显示大型xml feed而不会在内存中施加压力php

时间:2016-05-01 06:15:03

标签: php xml curl feed php-ini

我希望显示非常大的XML-feeds,而不会对CPU或内存施加太大压力。因为这些Feed不能再被放入内存中,而是必须以另一种方式处理。

我有两个url卷曲一个是有限制的: http://pf.tradetracker.net/?aid=1&type=xml&encoding=utf-8&fid=251713&categoryType=2&additionalType=2&limit=5000

和其他没有限制:http://pf.tradetracker.net/?aid=1&type=xml&encoding=utf-8&fid=251713&categoryType=2&additionalType=2

<?php
    ini_set('memory_limit', '32M');
    $feed_url = "http://pf.tradetracker.net/?aid=1&type=xml&encoding=utf-8&fid=251713&categoryType=2&additionalType=2&limit=5000";
    $c = curl_init($feed_url);
    curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
    $xmlstr = curl_exec($c);
    curl_close($c);
    $xml_feed_obj = json_decode(json_encode((array) simplexml_load_string($xmlstr)), 1);    
   foreach($xml_feed_obj as $products_feed)
   {
    foreach($products_feed as $feed)
    {
        $html =  "<link href='http://localhost/task/style.css' rel='stylesheet' type='text/css' />
            <div class='rightcontainer' style='margin-top:10px;'>
                <div class='flexslider carousel'>
                  <ul class='slides'>
                    <li>
                        <img src='".$feed->imageURL."' width='80' height='80'/>
                        <div class='caption-info'>
                            <div class='caption-info-head'>
                                <div class='caption-info-head-left'>
                                    <h4>Product Name: ".$feed->name."</h4><br>
                                    <span>Price: ".$feed->price."</span>
                                </div>
                                <div class='clear'> </div>
                            </div>
                        </div>
                    </li>
                  </ul>
                </div>      
            </div>";
        ob_start();
        echo $html; 
        $return_html =  ob_get_contents() ;
    }   
 }
 echo $return_html;
?>

当我卷曲网址时,显示和使用内存需要一些时间。

1 个答案:

答案 0 :(得分:1)

尝试使用限制值作为&#34; 50,100和#34;。

http://pf.tradetracker.net/?aid=1&type=xml&encoding=utf-8&fid=251713&categoryType=2&additionalType=2&limit=50, 100

它将从100开始记录并限制为50.因此,您可以使用ajax调用根据您的要求显示记录。它不会立即获取所有记录。