faqts : Computers : Programming : Languages : PHP : PHP Extensions

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

3 of 9 people (33%) answered Yes
Recently 3 of 9 people (33%) answered Yes

Entry

In PHP5 Win32, how do I load the php_(xxx).dll extensions commented out in the dist .INI file?

Oct 8th, 2006 09:52
Matthew Wilkinson, Seann Giffin,


If you have access to the php.ini that your PHP dist is using, just
remove the semi-colons the are in front of the wanted php extensions,
otherwise, in each script, include the extensions you want dynamically with
dl('php_xxx.dll');
This will take a little extra processing time (not much) but should
solve your problem.