How can I see which PHP extensions or PHP options are installed? Print

  • 1

If you need to ensure a particular PHP extension is installed, simply make a .php file with the following information in it :



// Show all information, defaults to INFO_ALL
phpinfo();


?>



The above code , when viewed on your website , will display all of the php information that is necessary to ensure a particular module/extension is installed.

Was this answer helpful?

« Back