How do I include a php.ini file in another php.ini file?
|
|
|||
|
|
|
I don't think you can "include" .ini files from the main php.ini file. One possible solution, though, might be to use this option on the configure line, when compiling PHP :
If this option is used at compile-time, PHP will look for every .ini file in this directory, in addition to the "normal" php.ini file. I suppose this is what is used by Ubuntu, for instance, which uses a different .ini file for each downloaded extension, instead of modifying php.ini. The path to the php.ini file being defined with this option, on the configure line :
Still, it probably means you'll have to re-compile PHP -- which is not that hard, btw -- the hardest part being to get the dependencies you need. And, here is a post on the internals@ mailling-list that says the same thing as I do : config files and |
||
|
|
|
|
You can't. Read online pages:
|
||
|
|
|
You could try to simulate it making use of the ini_set function. But as the "man page" indicates, not all ini options can be changed using ini_set. It's definitely a useful function, though. |
||
|
|
