You are here

function systeminfo_display_php in System Information 6.2

Same name and namespace in other branches
  1. 5.2 systeminfo.module \systeminfo_display_php()
  2. 6 systeminfo.module \systeminfo_display_php()

Menu callback of page 'PHP'.

1 string reference to 'systeminfo_display_php'
systeminfo_menu in ./systeminfo.module
Implementation of hook_menu().

File

./systeminfo.module, line 677
Displays information about the Drupal installation and system environment.

Code

function systeminfo_display_php() {
  $phpinfo = variable_get('systeminfo_php_phpinfo_parameter', INFO_ALL);
  phpinfo($phpinfo);
  exit;
}