php ini extension_dir

The extension_dir directive tells PHP where its loadable extensions (modules) are located. By default, this is set to ./, which means that the loadable extensions are located in the same directory as the executing script.

extension_dir = "D:\xampp\php\ext"

In the Windows environment,if extension_dir is not set, it will default to C:\PHP-INSTALLATION-DIRECTORY\ext\. In the Linux environment, the exact location of this directory depends on several factors, although it's quite likely that the location will be PHP-INSTALLATION-DIRECTORY/lib/ php/extensions/no-debug-zts-RELEASE-BUILD-DATE/.Directory in which the loadable extensions (modules) reside.





Content