How use of ob_start() in php
<?php ob_start(); echo("Hello world!"); $output = ob_get_contents(); ob_end_clean();