How to Check What PHP Modules are Installed

1 min read
How to Check What PHP Modules are Installed

From the command line, you can quickly check what PHP modules are installed.

List PHP Modules:

php -m

This command will list out all the enabled PHP modules you currently have installed. If you would like to filter the results, you can grep the results.

Filter PHP Modules List:

php -m | grep -i ftp