How to check which PHP version is running on my account?
To check exactly which PHP version is used for a certain website, create a simple PHP info file (for example phpinfo.php) in the /home/customer/www/yourdomainname.com/public_html folder, containing the following code:
<?php phpinfo(); ?>
Then open the file in a browser:
http://yourdomain.com/phpinfo.php
Replace yourdomain.com with your actual domain name.