Sussagittikasusa
Sussagittikasusa

Reputation: 2581

Understanding extensions in php.ini

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

Answers (3)

Ben Torell
Ben Torell

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

Niet the Dark Absol
Niet the Dark Absol

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

Related Questions