< All Topics
Print

phpinfo

In the phpinfo.php page, the PHP version can be seen at the top of the file as well as the current MySQL version.

You can also use phpinfo to check specific PHP settings such as safe_mode.

How to Create a phpinfo.php File

  1. In the public_html folder of your site, create a file named phpinfo.php.
  2. Insert one of the following selections of code into the phpinfo.php file:
    Show All PHP Information

    #Use the following code to show all the information about PHP.
    	<?php
    	phpinfo(); // This would be used to display all of the PHP information available for the installation.
    	?> 

    Show Installed Modules

    #Use the following code to see the installed modules and their current values.
    	<?php
    	phpinfo(INFO_MODULES); // This would be used to display the installed modules and their current values.
    	?> 

    Show php.ini Configurations

    #Use the following code to display the configurations you have set up through your php.ini or to review what's setup through the default configurations.
    	<?php
    	phpinfo(INFO_CONFIGURATION); // This would be used to display the configurations you have setup through your php.ini or to review what's setup through the default configurations.
    	?> 
  3. Open an internet browser.
  4. Type the following into your browser’s address bar:
    http://example.com/phpinfo.php

    Be sure to replace “example.com” with your actual domain.

Tags:
Table of Contents
0