PHP flush()関数
例
スクリプトの実行が完了する前に、ブラウザーに文字列を出力します。
<?php
// Some browsers will not display the content if it is too short
// We use str_pad() to make the output long enough
echo str_pad("Hello World!", 4096);
// Use flush() to send the string to the browser
flush();
// Display the rest of the content three seconds later
sleep(3);
echo "<br>";
echo "Hello World!";
?>
定義と使用法
flush()
関数は、現在バッファリングされている出力をブラウザに送信するようサーバーに要求します。サーバーの構成により、これが常に可能になるとは限りません。
構文
<div>flush();</div>
技術的な詳細
PHP バージョン: |
4+ |
---|
プログラミング学習を加速させる
プログラミングをプロの講師に教えてもらいませんか。