Pufu Kuff
0
Q:

php clear echo

ob_end_clean();
1
<?php

ob_start();
echo 'a';
print 'b';

// some statement that removes all printed/echoed items
ob_end_clean();

echo 'c';

// the final output is equal to 'c', not 'abc'

?>
-1

New to Communities?

Join the community