Create a page named phpinfo.php and insert the below code into it. Pull this page up in your browser and this will show the php configuration on the server.
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
// phpinfo(INFO_MODULES);
?>