function system_php in Drupal 5
Same name and namespace in other branches
- 6 modules/system/system.admin.inc \system_php()
- 7 modules/system/system.admin.inc \system_php()
Menu callback: return information about PHP.
1 string reference to 'system_php'
- system_menu in modules/
system/ system.module - Implementation of hook_menu().
File
- modules/
system/ system.module, line 1777 - Configuration system that lets administrators modify the workings of the site.
Code
function system_php() {
phpinfo(INFO_GENERAL | INFO_CONFIGURATION);
exit;
}