Current File : //proc/self/root/root/panel/etc/apps/phpinfo/shortinfo.php |
<?php
ob_start();
phpinfo(INFO_GENERAL);
$info = ob_get_contents();
ob_end_clean();
$info = preg_replace('%^.*<body>(.*)</body>.*$%ms', '$1', $info);
$info = str_replace('<img border="0"', '<img style="display: none;"', $info);
$info = str_replace(
'<table border="0" cellpadding="3" width="600">', '<table class="table table-striped" border="0" cellpadding="3" width="100%" class="table table-striped">', $info
);
echo $info;
?>