View Server PHP Environment with phpinfo.php


The phpinfo() function outputs a huge amount of information about the system you're using, such as (for example):

  • PHP Version
  • PHO environment
  • PHP options and extension available
  • OS version
  • predefined variables
  • ... and many others...

Create phpinfo.php File

To create a phpinfo file, simply open a plain text file in your web space, name it phpinfo.php, and insert in it the following line:

<?php
  phpinfo();
?>

Viewing the PHP Info

Access the following URL in the web browser: "http://yourwebaddress.com/phpinfo.php", replacing "yourwebaddress.com" with your actual domain name, to view the PHP information relating to your website.

  • php, phpinfo.php, phpinfo()
  • 8 Los Usuarios han Encontrado Esto Útil
¿Fue útil la respuesta?

Related Articles

How to Change Root Password Using SSH

This article explains the method of changing the root password on a Linux Server using SSH....

How to Create Sudo User on CentOS

This article provides step-by-step setup guide for adding Sudo user to CentOS system. The sudo...

How to Use Sudo

This article provides a guide to using a Sudo user on CentOS server. From the command line,...

Set Server Time Zones with Timedatectl

This article provides a guide to setting the server time and server time zone settings using...

508 Resource Limit is Reached

If your website is on a cPanel hosting account, you may have noticed the following error message:...