I want PHP to output some text, then sleep for a second and a half, and then output some more text.
echo 'Output one.'; ob_flush(); flush(); usleep(1500000); echo 'Output two.';