Is it possible to set a location of a library extension within a Php file
Posted
by Tom
on Stack Overflow
See other posts from Stack Overflow
or by Tom
Published on 2010-06-18T07:59:57Z
Indexed on
2010/06/18
8:03 UTC
Read the original article
Hit count: 230
I want to load an extension within a Php file as I don't have access to the php.ini file.
I tried:
ini_set('extension','php_gd2.dll');
With the file in the same directory as the Php page but it did not work.
Must it always be done with in php.ini or can it be done like the above?
© Stack Overflow or respective owner