一般的な方法は、最初に出力をレンダリングし、次にを使用して出力をクライアントにフラッシュしflush()
、次に時間消費クエリを実行することです。また、について知っておく必要がありignore_user_abort()
ます。この関数は、クライアントへの接続が終了した可能性がありますが、PHPを実行し続けます。(例:ユーザーがブラウザを閉じる)
これを説明する2つのスクリプトを用意しました。1つはslow.php
、出力を早期にフラッシュしてから、時間のかかるタスクを開始する方法です。2つ目はget.php
、libcurlを使用してページを受信する方法です。テストすると、slow.phpの実行中に、get.phpがほぼ即座に返されます。また、現在のMozillaで遅いphpをテストしました。
slow.php:
// The example will not work unless ob_end_clean() is called
// on top. Strange behaviour! Would like to know a reason
ob_end_clean();
// disable all content encoding as we won't
// be able to calculate the content-length if its enabled
@apache_setenv('no-gzip', 1);
@ini_set('zlib.output_compression', 0);
@ini_set('implicit_flush', 1);
header("Content-Encoding: none");
// Tell client that he should close the connection
header("Connection: close");
// keep the script running even if the CLIENT closes the connection
ignore_user_abort();
// using ob* functions its easy to content the content-length later
ob_start();
// do your output
echo 'hello world', PHP_EOL;
// get the content length
$size = ob_get_length();
header("Content-Length: $size");
// clear ob* buffers
for ($i = 0; $i < ob_get_level(); $i++) {
ob_end_flush();
}
flush(); // clear php internal output buffer
// start a time consuming task
sleep(3);
get.php
// simplest curl example
$url = 'http://localhost/slow.php';
$ch = curl_init($url);
$fp = fopen("example_homepage.txt", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);