Say a php file has include_once("$CONF/blah.inc") in it. Where is this $CONF and the default location?
views:
81answers:
3
+1
A:
$CONF looks like a normal PHP variable to me. Try poking around the the files you include earlier.
Ignacio Vazquez-Abrams
2010-05-01 18:07:28
+1
A:
$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.
John Percival Hackworth
2010-05-01 18:10:37