[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
0xampp
/
phpMyAdmin
/
libraries
/
classes
/
Controllers
/
[
Home
]
File: PhpInfoController.php
<?php /** * phpinfo() wrapper to allow displaying only when configured to do so. */ declare(strict_types=1); namespace PhpMyAdmin\Controllers; use function phpinfo; use const INFO_CONFIGURATION; use const INFO_GENERAL; use const INFO_MODULES; /** * phpinfo() wrapper to allow displaying only when configured to do so. */ class PhpInfoController extends AbstractController { public function __invoke(): void { global $cfg; $this->response->disable(); $this->response->getHeader()->sendHttpHeaders(); if (! $cfg['ShowPhpInfo']) { return; } phpinfo(INFO_GENERAL | INFO_CONFIGURATION | INFO_MODULES); } }