February 2013
Intermediate to advanced
538 pages
20h 55m
English
get_include_path
string get_include_path()
Returns the value of the include path configuration option,
giving you a list of include path locations. If you want to split the
returned value into individual entries, be sure to split on the
PATH_SEPARATOR constant, which is
set separately for Unix and Windows compiles:
$paths = split(PATH_SEPARATOR, get_include_path());
Read now
Unlock full access