PHP : See installed compiled-in-modules
PHP has compiled-in modules that allows it to perform various operation. If you want see what modules is linked to PHP. Enter the following command:
php -m
To see the set of installed PHP modules
output :
[PHP Modules]
bz2
calendar
Core
ctype
curl
date
dom
ereg
exif
fileinfo
filter
ftp
gd
gettext
gmp
hash
iconv
json
libxml
mbstring
mcrypt
mhash
mysql
mysqli
openssl
pcntl
pcre
PDO
pdo_mysql
pdo_sqlite
Phar
readline
Reflection
session
shmop
SimpleXML
sockets
SPL
sqlite3
standard
tokenizer
wddx
xml
xmlreader
xmlwriter
xsl
zip
zlib
[Zend Modules]
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+13.9k Golang : Convert spaces to tabs and back to spaces example
+14.1k Generate salted password with OpenSSL example
+15.4k Golang : How to check if IP address is in range
+16k Golang : Get digits from integer before and after given position example
+28.9k Golang : Detect (OS) Operating System
+8.2k Golang : Variadic function arguments sanity check example
+9k Golang : Sort lines of text example
+7.6k Golang : How to handle file size larger than available memory panic issue
+10.3k Golang : Use regular expression to get all upper case or lower case characters example
+26.2k Mac/Linux and Golang : Fix bind: address already in use error
+16.6k Golang : File path independent of Operating System
+5.5k Javascript : How to loop over and parse JSON data?