Source Code:
(back to article)
<?php ob_start(); echo "This will be buffered"; $output = ob_get_clean(); echo $output;
Result:
Report an issue