phpinfo.php
· 168 B · PHP
Brut
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>
| 1 | <?php |
| 2 | |
| 3 | // Show all information, defaults to INFO_ALL |
| 4 | phpinfo(); |
| 5 | |
| 6 | // Show just the module information. |
| 7 | // phpinfo(8) yields identical results. |
| 8 | phpinfo(INFO_MODULES); |
| 9 | |
| 10 | ?> |