php info code code example
Example 1: php info
// Show all information, defaults to INFO_ALL
phpinfo();
Example 2: show phpinfo just modules
phpinfo(INFO_MODULES);
// Show all information, defaults to INFO_ALL
phpinfo();
phpinfo(INFO_MODULES);