Skip to content

Instantly share code, notes, and snippets.

@hpcslag
Forked from LeoOnTheEarth/bigpipe.php
Created October 10, 2015 13:54
Show Gist options
  • Save hpcslag/4c6c59da5fa3db07c919 to your computer and use it in GitHub Desktop.
Save hpcslag/4c6c59da5fa3db07c919 to your computer and use it in GitHub Desktop.
Bigpipe Demo
<?php set_time_limit(0); ?>
<!DOCTYPE html>
<html lang="zh-tw">
<head>
<meta charset="utf-8" />
<title>BigPipe Demo</title>
</head>
<body id="main">
<div>
Hello world
</div>
</body>
<?php ob_flush(); flush(); sleep(3); ?>
<script>
document.getElementById('main').innerHTML += '<div>Hello world 2</div>';
</script>
<?php ob_flush(); flush(); sleep(3); ?>
<script>
document.getElementById('main').innerHTML += '<div>Hello world 3</div>';
</script>
<?php ob_flush(); flush(); sleep(3); ?>
<script>
document.getElementById('main').innerHTML += '<div>Hello world 4</div>';
</script>
<?php ob_flush(); flush(); sleep(3); ?>
<script>
document.getElementById('main').innerHTML += '<div>Hello world 5</div>';
</script>
<?php ob_flush(); flush(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment