aboutsummaryrefslogtreecommitdiffstats
path: root/output-flushing-test.php
diff options
context:
space:
mode:
Diffstat (limited to 'output-flushing-test.php')
-rwxr-xr-xoutput-flushing-test.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/output-flushing-test.php b/output-flushing-test.php
new file mode 100755
index 0000000..410208f
--- /dev/null
+++ b/output-flushing-test.php
@@ -0,0 +1,12 @@
+<?php
+header('Content-Type: text/plain; charset=UTF-8');
+
+echo "[INFO: If you see the single blocks successively, then the output flushing on your server works. If not, and you see it all at once, your server need to be configured to use output flushing.]\n\n";
+
+for($i = 1; $i <= 8; $i++) {
+ echo '[BLOCK: '.$i.']'."\n".str_repeat('[0]', 1500)."\n\n\n";
+ flush(); usleep(750000);
+}
+
+echo '[ALL BLOCKS LOADED]';
+?> \ No newline at end of file