In file config.php
$_CONFIG = array();
require_once("config.inc.php");
var_dump($_CONFIG);
In file config.inc.php
$_CONFIG = array('x' => 'y', ...);
var_dump($_CONFIG);
The output of this code, when run from the command line is:
array(15) {
["x"]=>
string(1) "y"
...
}
array(0) {
}
If I remove the first line of config.php which initializes the empty $_CONFIG array, the script works, and the var_dumps are identical.
Note that this is a script run from a command line. Any idea why this is happening? I've tried this on two separate machines, one with PHP 5.3.3 and the other with PHP 5.3.5.
Update - This only seems to be an issue with the command line. When run from a browser, it seems fine. Also, there is a third file I forgot to mention, which is including config.php
test.php
require_once("/path/to/config.php");
When running test.php, not config.php from the command line, I get the output above.
php --version? – Karoly Horvath Feb 28 '12 at 20:35