增量显示PHP输出可在localhost上运行,但不能在远程服务器上运行

时间:2016-09-08 23:49:16

标签: javascript php ajax

我使用以下代码通过AJAX逐步将PHP输出流式传输到JavaScript:

ini_set('output_buffering', 'off');
ini_set('zlib.output_compression', false);

while (@ob_end_flush());

ini_set('implicit_flush', true);
ob_implicit_flush(true);

header("Content-type: text/plain");
header('Cache-Control: no-cache');

for($i = 0; $i < 1000; $i++) {
  echo ' ';
}

// show output here

localhost这对我来说很好,但我尝试过使用三台不同的远程服务器,所有这些服务器都无法正常工作。

这是什么原因?我可以根据需要提供更多代码。

0 个答案:

没有答案