Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonshell/9d07e666b8f3e427c84c024e4417da2e to your computer and use it in GitHub Desktop.
Save antonshell/9d07e666b8f3e427c84c024e4417da2e to your computer and use it in GitHub Desktop.
Hide system section from phpinfo()
<?php
ob_start();
phpinfo();
$phpinfo = ob_get_clean();
$startPos = strpos($phpinfo,'<tr><td class="e">System </td>');
$endPos = strpos($phpinfo,'</tr>',$startPos);
$output = substr($phpinfo, 0,$startPos);
$output .= substr($phpinfo,$endPos,strlen($phpinfo));
echo $output;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment