ob_start();//buf1
echo 'multiple';
ob_start();//buf2
echo 'bufferswork';
$buf2 = ob_get_contents();
ob_end_clean();
$buf1 = ob_get_contents();
ob_end_clean();
echo $buf1;
echo '';
echo $buf2;
2024-02-19 21:59:34
ob_start();//buf1
echo 'multiple';
ob_start();//buf2
echo 'bufferswork';
$buf2 = ob_get_contents();
ob_end_clean();
$buf1 = ob_get_contents();
ob_end_clean();
echo $buf1;
echo '';
echo $buf2;