<?php
echo 'Hello';
echo 'World':
$e = // Get the output of the page.
echo $e; // 'HelloWorld' should be printed.
?>
I want to get all the output of the current page and print it as a variable.
For example, I printed 'Hello' and 'World' respectively. How can I get the content on the page?