php obtient du contenu phpinfo sans show

<?php
ob_start();
@phpinfo();
$content = ob_get_contents();
ob_end_clean();

//you get all the info in $content, but the user never see the data
Ivan The Terrible