How do I include a php.ini file in another php.ini file?

link|improve this question

73% accept rate
I'm interested how RHEL/Fedora accomplishes the /etc/php.d/* include. Did they patch PHP to make this possible? – gahooa Sep 8 '09 at 4:17
feedback

4 Answers

up vote 6 down vote accepted

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 :

--with-config-file-scan-dir=PATH                                                        
    Set the path where to scan for configuration files

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 :

--with-config-file-path=PATH                                                            
    Set the path in which to look for php.ini [PREFIX/lib]

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 PHP_CONFIG_FILE_SCAN_DIR

link|improve this answer
In addition to compile time setting, there is also an environment variable PHPRC which makes possible to change default php.ini (and possible other ini files) directory. – Emre Yazıcı Jul 29 '11 at 17:19
feedback

You can't. Read online pages:

The configuration file

SUMMARY: The configuration file (php.ini) is read when PHP starts up. For the server module versions of PHP, this happens only once when the web server is started. For the CGI and CLI version, it happens on every invocation.

.user.ini files

SUMMARY: In addition to the main php.ini file, PHP scans for INI files in each directory, starting with the directory of the requested PHP file, and working its way up to the current document root (as set in $_SERVER['DOCUMENT_ROOT']). Only INI settings with the modes PHP_INI_PERDIR and PHP_INI_USER will be recognized in .user.ini-style INI files.

link|improve this answer
1  
I read those before posting, says nothing about including whether it is possible or not. – Itay Moav Sep 8 '09 at 3:53
feedback

I installed memcached for php and wasn't sure how to make sure that it's ini was included in my php.ini, but as it turns out it automatically is. You can validate what is being loaded by running php --ini.

php --ini Configuration File (php.ini) Path: /opt/local/etc/php5 Loaded Configuration File: (none) Scan for additional .ini files in: /opt/local/var/db/php5 Additional .ini files parsed: /opt/local/var/db/php5/memcached.ini

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.