- These instructions are intended specifically for listing compiled PHP modules from the command line.
- I’ll be working from an XWEB Core Managed CentOS 6.5 server, and I’ll be logged in as root. That said, these instructions will work on any server where PECL and PEAR are installed.
The general command is php -m; this command will give you the full list of extensions:
php -m
This command will give you an output like:
bz2
calendar
Core
ctype
curl
date
ereg
exif
fileinfo
filter
ftp
gettext
gmp
hash
iconv
json
libxml
mongo
openssl
pcntl
pcre
Phar
readline
Reflection
session
shmop
SimpleXML
sockets
SPL
standard
tokenizer
xml
zip
zlib
If you’re looking for one particular item then use a pipe and the grep command:
php -m | grep -i mongo
In the case above, I “grep’d” looking for the PHP module mongo ; replace mongo with the name of the module you’re searching for!