<?php
echo 'first<br>';
ob_flush();
flush();
file_get_contents("http://ttt.tt");
echo "second";
http://ttt.tt is not reachable. so in browser we can see the output "first" and then wait for "30s"/Maximum execution time of each script/ there will output "second".
in IE、FF, it works ok.
but in chrome,"first" && "second" will output together.
my english is bad.i Don't know if you understand.help!!!
i also tried to disable browser's cache like this:
header("Cache-Control: no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
but problems still exist..