Loading or identifying extension directory of dll in windowsPHP stores all the dlls inside the extension directory in window system. The dlls are loaded from here ( the directory ) based on the setting of php.ini file. Many times one can get the error message saying extension not found. So after installation of PHP the best way to identify the extension directory is to open php info file and check for all the settings.In the php info display it will be written where the extension file of the system is stored. It is also known as extension_dir . The picture below is the screen shoot of the php info display and the portion explaining the extension directory is shown.
The php.ini file located inside windows folder ( or inside php folder ) can be edited to change the extension directory location. The location of php.ini file also can be collected from php info display. Inside the php.ini file there is a line saying like this.
Change the above line to point to correct extension directory path. After showing the path inside php.ini file below the above line there will be all dlls listing and any dll can be added or removed by commenting or removing the comment before it. Here is some listing examples.
You can see three .dlls are in use. The comments lines are removed. This is the way we add or remove extensions for PHP.
Checking extension loaded or notWe can check the status of the extension by using extension_loaded() function. Here is a sample code to check gd extension.
Note that these all are in window platform.
This article is written by plus2net.com team.
![]() | ||||
| ||||