Skip to content

Instantly share code, notes, and snippets.

@myanmarlinks
Created July 4, 2017 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myanmarlinks/166c5592a952b1b486c1f51ab1b5477c to your computer and use it in GitHub Desktop.
Save myanmarlinks/166c5592a952b1b486c1f51ab1b5477c to your computer and use it in GitHub Desktop.
Output Buffering Fourth
<?php
ob_start();
echo "How are you and where do you live? ";
echo "I live in Yangon";
$out1 = ob_get_contents();
echo "How do you do?";
echo "where do you live";
$out2 = ob_get_contents();
ob_end_clean();
var_dump($out1);
var_dump($out2);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment