php get content phpinfo without show code example
Example: php get content phpinfo without 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
<?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