Created
July 4, 2017 15:07
-
-
Save myanmarlinks/eb96631075c670ae8bb9015b12e5db53 to your computer and use it in GitHub Desktop.
Output Bufferning Third
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ob_start("ob_gzhandler"); | |
echo "Hello Apple <br>"; | |
echo "How are you my Apple! <br>"; | |
echo "Another, How are you? <br>"; | |
echo "Testing One Apple Three <br>"; | |
ob_end_flush(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment