Skip to content

Instantly share code, notes, and snippets.

@myanmarlinks
Created July 4, 2017 15:21
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/408cc4c00c8443fb9b2613d549d811b3 to your computer and use it in GitHub Desktop.
Save myanmarlinks/408cc4c00c8443fb9b2613d549d811b3 to your computer and use it in GitHub Desktop.
Output Buffering Five
<?php
ob_start();
echo "How are you and where do you live? ";
echo "I live in Yangon";
echo "How do you do?";
echo "where do you live";
$out = ob_get_clean();
// echo $out;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment