The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<?php
ob_start();
    echo 'hello';
    $contents = ob_get_contents();
ob_end_clean();

ob_start();
    echo 'hello';
ob_end_flush();
?>