Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

How many php modules are included in php extensions?


Asked by Alondra Ochoa on Dec 09, 2021 PHP



PHP extensions are used for different purposes with only a few exceptions: Every function in PHP is included into one extension or another. A major number of these extensions are a part of standard extensions – over 400 of them. There is also a PECL repository which offers over 100 additional modules.
Indeed,
This appendix categorizes more than 150 extensions documented in the PHP Manual by several criteria. There are no user contributed notes for this page.
Besides, This parameter is case-insensitive. You can see the names of various extensions by using phpinfo () or if you're using the CGI or CLI version of PHP you can use the -m switch to list all available extensions: $ php -m [PHP Modules] xml tokenizer standard sockets session posix pcre overload mysql mbstring ctype [Zend Modules]
Just so,
Or from the command line, run: The most common way to load a PHP extension is to include it in your php.ini configuration file. Please note that many extensions are already present in your php.ini and that you only need to remove the semicolon to activate them.
Moreover,
The general command is php -m, which will show you a list of all “compiled” PHP modules. You can search for a specific PHP module for instance php-ftp, using the grep command.