There are Different Methods to check PHP information
Check PHP Information using cPanel
- Login to cPanel account
- There is MultiPHP manager tool under Software section
- You see there is PHP version mentioned
Checking the PHP version by creating phpinfo.php file in the File manager
- Login to cPanel account
- Go to file manager
- Under public_html folder press on +File option for creating new file
- Create new file with phpinfo.php name under /public_html directory
- Open that file in Edit mode just right click and click on the EDIT option it will open new windows. Write down below code and save the file.
<?php
phpinfo();
?>
- Now open a new tab and type the Url http://yourdomain.com/phpinfo.php (Here your domain will be domain owned by you)it will show output like below. It will show all information about PHP.

