Search Results

  1. Displays information about the PHP environment, configuration settings, and installed modules.

    • PHP

      A função phpinfo exibe informações sobre a configuração do...

    • Phpversion

      Return Values ¶ Returns the current PHP version as a string....

    • Putenv

      Adds assignment to the server environment. The environment...

    • Getmyuid

      Gets PHP script owner's UID Note that this function really...

    • Getrusage

      In a web environment where you have long running apache...

    • Getlastmod

      Gets time of last page modification If you use...

    • Getmygid

      getmygid (PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8) getmygid —...

    • Phpcredits

      This function prints out the credits listing the PHP...

  2. <?php phpinfo(); and when you navigate to this page in your browser, it will display the PHP information In the command line you can get the PHP information using -i option:

  3. Jan 21, 2026 · Quickly create a phpinfo.php file to diagnose PHP issues, check loaded modules, and verify server configuration. Essential guide for developers.

  4. The phpinfo() function : Phpinfo page give information about PHP configuration and installation in our system, also used to identify installation and configuration problems. To Create phpinfo file..

  5. Outputs a large amount of information about the current state of PHP. This includes information about PHP compilation options and extensions, the PHP version, server information and environment (if compiled as a module), the PHP environment, OS version information, paths, master and local values of configuration options, HTTP headers, and the PHP License. Because every system is setup ...

  6. Notes Note: Parts of the information displayed are disabled when the expose_php configuration setting is set to off. This includes the PHP and Zend logos, and the credits. Note: phpinfo () outputs plain text instead of HTML when using the CLI mode.

  7. People also ask

  8. Jul 23, 2024 · The phpinfo () function in PHP gives us the details about the PHP version and configuration installed in our system. To check the Configurations and Versions, a simple PHP script can be used. The script consists of a PHP function called "phpinfo ()" which outputs information about PHP's configuration.