Reputation: 2581
I'm having trouble understanding these ;extension=xxx.dll
files in php.ini
Is there any document I can refer to which explains these extensions in detail?
Upvotes: 1
Views: 321
Reputation: 2093
The .dll files are for PHP extensions. You can read about all of them here: http://php.net/manual/en/install.windows.extensions.php
PHP extensions give you extra PHP functionality. They are basically function libraries that add features like MySQL functions, LDAP functions, and even Java functions.
To activate the extensions provided by the default PHP install, simply uncomment the ;extension=xxx.dll
line (remove the semicolon) so that it just looks like extension=xxx.dll
.
However, not all extensions are bundled with PHP. For example, the PECL extensions, including APC, have to be installed externally. Instructions for installing PECL can be found here: http://www.php.net/manual/en/install.pecl.php
Upvotes: 4
Reputation: 798456
"Extension Writing Part I: Introduction to PHP and Zend"
Upvotes: 1
Reputation: 324600
You only need to worry about those if you're running on a Windows server - since they appear to be commented out (;
at the start of the line) I would assume you're on a Linux server?
In any case, you should be able to look up each extension individually on Google.
Upvotes: 0