Reputation: 38255
Say a php file has include_once("$CONF/blah.inc")
in it. Where is this $CONF and the default location?
Upvotes: 0
Views: 1546
Reputation: 11531
$CONF is a configuration variable set in an already sourced file. The search path is relative to at least one element from the include_path variable.
See http://www.php.net/manual/en/ini.core.php#ini.include-path for more details.
Upvotes: 2
Reputation: 798606
$CONF
looks like a normal PHP variable to me. Try poking around the the files you include earlier.
Upvotes: 1