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