Translated using Weblate.
[phpmyadmin.git] / phpinfo.php
blob2d47abf4659754001372e3d8cb446554338980fd
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * phpinfo() wrapper to allow displaying only when configured to do so.
5 * @package PhpMyAdmin
6 */
8 /**
9 * Gets core libraries and defines some variables
11 require_once './libraries/common.inc.php';
14 /**
15 * Displays PHP information
17 if ($GLOBALS['cfg']['ShowPhpInfo']) {
18 phpinfo();