У меня проблема с эхо / печатью, которая возвращает большое количество данных.Ответ разбит и выглядит следующим образом:
- конец данных
- http заголовок ответа напечатан в теле
- начало данных
Я запускаю следующий скрипт в своем браузере, чтобы повторить проблему:
<?php
// Make a large array of strings
for($i=0;$i<10000;$i++)
{
$arr[] = "testing this string becuase it is must longer than all the rest to see if we can replicate the problem. testing this string becuase it is must longer than all the rest to see if we can replicate the problem. testing this string becuase it is must longer than all the rest to see if we can replicate the problem.";
}
// Create one large string from array
$var = implode("-",$arr);
// Set HTTP headers to ensure we are not 'chunking' response
header('Content-Length: '.strlen($var));
header('Content-type: text/html');
// Print response
echo $var;
?>
Что здесь происходит?
Может кто-нибудь еще попробовать?