动态加载foreach循环

时间:2012-06-28 19:45:07

标签: php ajax

我有以下foreach循环:

                <?php
            ob_start();
            foreach ($streams as &$stream) {
                $array = stream($stream);
            ?>
                <a href="livestreams.php?stream=<?=$stream;?>">
                    <div class="channel-preview" style="background-image:url(<?=$array[2];?>);">
                        <div class="container">
                            <hgroup>
                                <h1><?=$array[4];?></h1>
                                <h2><?=$array[3];?></h2>
                            </hgroup>

                            <div class="meta">
                                <span class="live-viewers">Live Viewers:</strong> <?=$array[1];?></span>
                            </div>

                            <span class="game-badge starcraft-2" title="Starcraft 2"><span class="hide">Starcraft 2</span></span>
                        </div>
                    </div>
                </a>
            <?php
                    ob_flush();
                    flush();
                }
                ob_end_flush();
            ?>

请注意,这只是整个脚本的一部分。问题是它加载速度相当慢。我试过用ob_flush();如你所见,加快速度,但没有太大的差别。

我的问题是整页的加载时间。页面甚至需要一段时间才能在浏览器中显示。是否可以在页面已经渲染时使用AJAX加载循环?或者还有其他方法吗?

修改

虽然是从外部服务器接收的,但这很可能是造成延迟的原因。我应该早点说明这一点。

1 个答案:

答案 0 :(得分:0)

像这样的简单技巧可能会起作用[如php.net上所建议]

<?php
// All you need is 256 spaces first
echo str_repeat(" ", 256)."<pre>"; flush();

// and ANY TAG before \r\n
echo "working...<br/>\r\n"; flush(); sleep(1); // this in cycle
?>

编辑:在刷新后添加延迟也可以解决问题:

usleep(50000);// delay minimum of .05 seconds to allow ie to flush to screen

请在此处详细了解有关刷新问题的刷新和建议解决方法:http://php.net/manual/en/function.flush.php