[PHP] phpinfo()

phpinfo() (funzione PHP) restituisce tutte le informazioni, in forma HTML, delle impostazioni e dettagli dell’ambiente PHP del server.

tips&tricks

Sintassi

phpinfo($limitazione[facoltativo])
parametro descrizione
$limitazione Consente di limitare l’output secondo le seguenti costanti:
INFO_ALL (default) All information
INFO_GENERAL General information about PHP
INFO_CREDITS Credits for PHP, including the authors
INFO_CONFIGURATION Configuration and compilation options
INFO_MODULES Currently loaded extensions
INFO_ENVIRONMENT Information about the PHP environment
INFO_VARIABLES A list of the current variables and their values
INFO_LICENSE The PHP license

Esempi

phpinfo() // [omissis]

Contenuti correlati

Fonti esterne

funzioni php, php

Related Articles

0 Comment