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?

0 of 3 people (0%) answered Yes
Recently 0 of 3 people (0%) answered Yes

Entry

In PHP5 Win32, how do I load the extensions commented out in the dist .INI file PROPERLY?

Oct 8th, 2006 09:53
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.