dwh/phpinfo.php

10 lines
169 B
PHP
Raw Permalink Normal View History

2023-10-02 10:26:17 +00:00
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>