geega
8/5/2017 - 12:19 PM

How use of ob_start() in php

How use of ob_start() in php

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