How can I check what is installed in PHP? Such as Libraries, extensions, et cetera
Linode
Linode Staff
I'm not sure if something I set up is fully installed and I want to see everything that is installed in PHP. What's the best way for me to do this? Thanks!
1 Reply
scrane
Linode Staff
You can easily check the installed PHP extenstions, libraries, and what not with the phpinfo() command. For example, from the command line you can check for PHP cURL support with grep:
php -r 'phpinfo();' | grep -i curl
You can also create the phpinfo as a webpage. You can find further instructions on
this Community question.