Phpinfo()

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Handig om PHP-instellingen te verifiëren:

<?php
 phpinfo();
?>

Ik noem dit bestand phpinfo.php.

Hier bestaan varianten op. Bv.:

<?php

// Show all information, defaults to INFO_ALL
phpinfo();

// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>